-C Changes\sto\sget\sSQLite\srunning\son\smachines\sthat\suse\sthe\sEBCDIC\scharacter\sset.\s(CVS\s3161)
-D 2006-04-04T01:54:55
+C Documentation\stypos.\s\sTickets\s#1749\sand\s#1750.\s(CVS\s3162)
+D 2006-04-05T01:02:08
F Makefile.in 5d8dff443383918b700e495de42ec65bc1c8865b
F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
-F www/capi3ref.tcl fcdd46f05a1474c2e811a6842d5f962e286bb646
+F www/capi3ref.tcl 5f0c4020c90b8eb44f8e0a9e1852faa492ca2dfe
F www/changes.tcl 06e23e1286bee6753d405047f0ccb5c2ba8ca555
F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083
F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
F www/docs.tcl 09eeac4e565789a67abc63f166a9ae7f3050454d
F www/download.tcl d56a1c30b1c3c18f62926a806179976eb133ce94
F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
-F www/faq.tcl ad5f388e1924c3fff4892b7f45ea58aa1d7a562a
+F www/faq.tcl 705c986e40775cc3d92a1676dcbb55f00f0459c5
F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl 4972e680f9331ea46f47001e349baba807f5b60a
F www/fullscanb.gif f7c94cb227f060511f8909e10f570157263e9a25
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 94054cd997a67541547cf593bfbba7da4f9e31ce
-R 79ca3ad32ab000a61e8d5b8ad2a8213d
+P 4342b4997199241cafd6120c6abda665770e270c
+R 88387a0cc316d99ca837eadb3ffa1349
U drh
-Z 39ddea0768d4db2bc45d38fc203dcb14
+Z 7ef64da569599f201110df193cbd2576
-set rcsid {$Id: capi3ref.tcl,v 1.36 2006/03/25 14:03:42 drh Exp $}
+set rcsid {$Id: capi3ref.tcl,v 1.37 2006/04/05 01:02:08 drh Exp $}
source common.tcl
header {C/C++ Interface For SQLite Version 3}
puts {
If the busy callback is NULL, then SQLITE_BUSY is returned immediately
upon encountering the lock.
If the busy callback is not NULL, then the
- callback might invoked with two arguments. The
+ callback will be invoked with two arguments. The
second argument is the number of prior calls to the busy callback
for the same lock. If the
busy callback returns 0, then no additional attempts are made to
#
# Run this script to generated a faq.html output file
#
-set rcsid {$Id: faq.tcl,v 1.35 2006/02/11 01:25:52 drh Exp $}
+set rcsid {$Id: faq.tcl,v 1.36 2006/04/05 01:02:08 drh Exp $}
source common.tcl
header {SQLite Frequently Asked Questions</title>}
<p>Multiple processes can have the same database open at the same
time. Multiple processes can be doing a SELECT
at the same time. But only one process can be making changes to
- the database at an given moement in time, however.</p>
+ the database at any moment in time, however.</p>
<p>SQLite uses reader/writer locks to control access to the database.
(Under Win95/98/ME which lacks support for reader/writer locks, a