diff --git a/manifest b/manifest index 4fb6bdb971..af6cd78425 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Line\stclsqlite.so\sagainst\sthe\sstub\slibrary.\s(CVS\s273) -D 2001-09-28T18:10:56 +C Remove\sreference\sto\sGDBM\sin\sthe\sdocumentation\sof\sthe\s"sqlite"\ncommand-line\sutility.\s(CVS\s274) +D 2001-09-28T18:14:17 F Makefile.in 98d4627cb364537e4c3a29ee806171f3abf5211a F Makefile.template 7179523fdf3d6e7933ec843e2352dcfc9785c700 F README 93d2977cc5c6595c448de16bdefc312b9d401533 @@ -108,10 +108,10 @@ F www/lang.tcl 33a74d727615ccbee8be7c8efd5876ce008c4b0e F www/mingw.tcl fc5f4ba9d336b6e8c97347cc6496d6162461ef60 F www/opcode.tcl 60222aeb57a7855b2582c374b8753cb5bb53c4ab F www/speed.tcl 91b53f9403a62bb322dc1f85a81531309bcfb41c -F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f +F www/sqlite.tcl ea362207eee32cdd9dd594b1ec990bdb20101efe F www/tclsqlite.tcl 13d50723f583888fc80ae1a38247c0ab415066fa F www/vdbe.tcl 0c8aaa529dd216ccbf7daaabd80985e413d5f9ad -P 1df5386a5557c1fc6a5433e9dbd23009026be369 -R 6225ec3f6335ee7954c1d6de6918fbe0 +P 7e79e91b03e21058bbae2c0aab8f3e8ce09ae7f9 +R 241095ce4074dd39044429d0144b987e U drh -Z 8263c2f5969f26088267e7e476fc0b16 +Z 5497d3942cad9d16c737ee62c27c8636 diff --git a/manifest.uuid b/manifest.uuid index 3efd34ba1c..e2aae0032c 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -7e79e91b03e21058bbae2c0aab8f3e8ce09ae7f9 \ No newline at end of file +0ffab36d1fc29125fdcf0d732073f77012dfcad4 \ No newline at end of file diff --git a/www/sqlite.tcl b/www/sqlite.tcl index 48b00b113c..583a01f685 100644 --- a/www/sqlite.tcl +++ b/www/sqlite.tcl @@ -1,7 +1,7 @@ # # Run this Tcl script to generate the sqlite.html file. # -set rcsid {$Id: sqlite.tcl,v 1.13 2000/08/08 20:19:09 drh Exp $} +set rcsid {$Id: sqlite.tcl,v 1.14 2001/09/28 18:14:17 drh Exp $} puts {
@@ -24,12 +24,9 @@ introduction on how to use sqlite.To start the sqlite program, just type "sqlite" followed by -the name of an SQLite database. An SQLite database is really just -a directory full of GDBM files, so the argument to the sqlite command -should really be the name of a directory on your disk. If that -directory did not previously contain an SQLite database, a new one -is created for you automatically. If the directory did not previously -exist, it is automatically created. The sqlite program will +the name the file that holds the SQLite database. If the file does +not exist, a new one is created automatically. +The sqlite program will then prompt you to enter SQL. Type in SQL statements (terminated by a semicolon), press "Enter" and the SQL will be executed. It's as simple as that!