-C Minor\schange\sto\sa\scomment\sin\sencode.c.\s(CVS\s1036)
-D 2003-06-28T16:25:34
+C Documentation\supdates.\s(CVS\s1037)
+D 2003-06-29T16:11:13
F Makefile.in 9ad23ed4ca97f9670c4496432e3fbd4b3760ebde
F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
F www/download.tcl 0932d7f4f0e8b2adbbd22fac73132f86e43ab4a9
F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
F www/faq.tcl 88d3b95d9cd8e374772daa3a646c4d107e7f3e9b
-F www/fileformat.tcl d9b586416c0d099b82e02e469d532c9372f98f3f
-F www/formatchng.tcl cbaf0f410096c71f86a7537cf9249fa04b9a659c
+F www/fileformat.tcl ae6ccf3ffddb180a5af173cd6ee102169629762b
+F www/formatchng.tcl ca6cc1cb1bef9bc36f0619049d3c95e749bc6983
F www/index.tcl a34315cada875af0b098b4c45981da8ab33fe7b6
F www/lang.tcl 2890eb85809c8fca20c1d81fa30fbdbceecc2a43
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
F www/nulls.tcl 29497dac2bc5b437aa7e2e94577dad4d8933ed26
F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec
-F www/opcode.tcl 1ff274b0ca7c8a60f7b231a47e4e95cfc3b2873d
+F www/opcode.tcl b8d561f33597c62955796b797646f00144d97332
F www/quickstart.tcl 4e97bef825e6a4153c43afb9f97235fc4da278ab
-F www/speed.tcl 296cc5632d069b56d3ef5409ca0df90f486c10fb
-F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125
+F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3
+F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331
-F www/vdbe.tcl 14fdcc7fe8a60a6ba8584903636db8dc37eef26a
-P e2ca936feee35b3fce99c95c2cf8c0ad05cd9c3b
-R cfb713a77db3ee45d8bfec587408e8ac
+F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
+P 3f252b72c9d9ea586161a1b2c5ae297594a1cd4a
+R 87f87a54019b928d5e2979797a3f7684
U drh
-Z 158078b48c563543782d1f7f2db6bee1
+Z a392097628a4ed270b38ce1c06b187a7
-3f252b72c9d9ea586161a1b2c5ae297594a1cd4a
\ No newline at end of file
+ab21de5fdd8e45be19411cdba647eada0bc9a9f1
\ No newline at end of file
#
# Run this script to generated a fileformat.html output file
#
-set rcsid {$Id: fileformat.tcl,v 1.8 2003/02/13 02:54:04 drh Exp $}
+set rcsid {$Id: fileformat.tcl,v 1.9 2003/06/29 16:11:13 drh Exp $}
puts {<html>
<head>
Processes that are attempting to rollback a journal use these 8 bytes
as a sanity check to make sure the file they think is a journal really
is a valid journal. Prior version of SQLite used different journal
-file formats. The magic numbers for these prior formats is differ
+file formats. The magic numbers for these prior formats are different
so that if a new version of the library attempts to rollback a journal
created by an earlier version, it can detect that the journal uses
an obsolete format and make the necessary adjustments. This article
#
# Run this Tcl script to generate the formatchng.html file.
#
-set rcsid {$Id: formatchng.tcl,v 1.8 2003/02/13 02:54:04 drh Exp $ }
+set rcsid {$Id: formatchng.tcl,v 1.9 2003/06/29 16:11:13 drh Exp $ }
puts {<html>
<head>
indices on "text" columns occur in a different order for version
2.7.0 and later database. Hence version 2.6.3 and earlier of SQLite
will be unable to read a 2.7.0 or later database. But version 2.7.0
- and later of SQLite will read earlier database version.</p>
+ and later of SQLite will read earlier databases.</p>
</td>
</tr>
<tr>
#
# Run this Tcl script to generate the sqlite.html file.
#
-set rcsid {$Id: opcode.tcl,v 1.11 2003/06/02 06:29:31 jplyon Exp $}
+set rcsid {$Id: opcode.tcl,v 1.12 2003/06/29 16:11:13 drh Exp $}
puts {<html>
<head>
instructions generated by an SQL statement. The following is
an example:</p>}
-
proc Code {body} {
- puts {<blockquote><pre>}
+ puts {<blockquote><tt>}
regsub -all {&} [string trim $body] {\&} body
regsub -all {>} $body {\>} body
regsub -all {<} $body {\<} body
- regsub -all {\(\(\(} $body {<font color="#00671f"><u>} body
- regsub -all {\)\)\)} $body {</u></font>} body
+ regsub -all {\(\(\(} $body {<b>} body
+ regsub -all {\)\)\)} $body {</b>} body
+ regsub -all { } $body {\ } body
+ regsub -all \n $body <br>\n body
puts $body
- puts {</pre></blockquote>}
+ puts {</tt></blockquote>}
}
Code {
#
# Run this Tcl script to generate the speed.html file.
#
-set rcsid {$Id: speed.tcl,v 1.12 2003/06/05 15:05:35 drh Exp $ }
+set rcsid {$Id: speed.tcl,v 1.13 2003/06/29 16:11:13 drh Exp $ }
puts {<html>
<head>
<li><p>
SQLite 2.7.6 is significantly faster (sometimes as much as 10 or
20 times faster) than the default PostgreSQL 7.1.3 installation
- on RedHat 7.3 for most common operations.
+ on RedHat 7.2 for most common operations.
</p></li>
<li><p>
SQLite 2.7.6 is often faster (sometimes
this way, SQLite is much faster than either PostgreSQL and MySQL.
</p>
-<h2>Test 3: 25000 INSERTs into an indexed tablel</h2>
+<h2>Test 3: 25000 INSERTs into an indexed table</h2>
<blockquote>
BEGIN;<br>
CREATE TABLE t3(a INTEGER, b INTEGER, c VARCHAR(100));<br>
#
# Run this Tcl script to generate the sqlite.html file.
#
-set rcsid {$Id: sqlite.tcl,v 1.20 2003/05/10 02:54:57 jplyon Exp $}
+set rcsid {$Id: sqlite.tcl,v 1.21 2003/06/29 16:11:13 drh Exp $}
puts {<html>
<head>
}
proc Code {body} {
- puts {<blockquote><pre>}
+ puts {<blockquote><tt>}
regsub -all {&} [string trim $body] {\&} body
regsub -all {>} $body {\>} body
regsub -all {<} $body {\<} body
- regsub -all {\(\(\(} $body {<font color="#00671f"><u>} body
- regsub -all {\)\)\)} $body {</u></font>} body
+ regsub -all {\(\(\(} $body {<b>} body
+ regsub -all {\)\)\)} $body {</b>} body
+ regsub -all { } $body {\ } body
+ regsub -all \n $body <br>\n body
puts $body
- puts {</pre></blockquote>}
+ puts {</tt></blockquote>}
}
Code {
}
puts {
-<p>(In the example above, and in all subsequent examples, the commands
-you type are underlined and shown with a green tint and the responses
-from the computer are shown in black without underlining.)</p>
-
<p>You can terminate the sqlite program by typing your systems
End-Of-File character (usually a Control-D) or the interrupt
character (usually a Control-C).</p>
#
# Run this Tcl script to generate the vdbe.html file.
#
-set rcsid {$Id: vdbe.tcl,v 1.10 2003/06/07 08:57:58 jplyon Exp $}
+set rcsid {$Id: vdbe.tcl,v 1.11 2003/06/29 16:11:13 drh Exp $}
puts {<html>
<head>
will cause <b>sqlite</b> to print the VDBE program rather than
execute it. We have:</p>
}
-
proc Code {body} {
- puts {<blockquote><pre>}
+ puts {<blockquote><tt>}
regsub -all {&} [string trim $body] {\&} body
regsub -all {>} $body {\>} body
regsub -all {<} $body {\<} body
- regsub -all {\(\(\(} $body {<font color="#00671f"><u>} body
- regsub -all {\)\)\)} $body {</u></font>} body
+ regsub -all {\(\(\(} $body {<b>} body
+ regsub -all {\)\)\)} $body {</b>} body
+ regsub -all { } $body {\ } body
+ regsub -all \n $body <br>\n body
puts $body
- puts {</pre></blockquote>}
+ puts {</tt></blockquote>}
}
Code {