]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Remove reference to GDBM in the documentation of the "sqlite"
authordrh <drh@noemail.net>
Fri, 28 Sep 2001 18:14:17 +0000 (18:14 +0000)
committerdrh <drh@noemail.net>
Fri, 28 Sep 2001 18:14:17 +0000 (18:14 +0000)
command-line utility. (CVS 274)

FossilOrigin-Name: 0ffab36d1fc29125fdcf0d732073f77012dfcad4

manifest
manifest.uuid
www/sqlite.tcl

index 4fb6bdb971949c86bdbfd74a2ab2ac44ac2ea2a3..af6cd78425d3589cfbd3bf2e3345e425ad58286b 100644 (file)
--- 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
index 3efd34ba1c981a93d60c8fc01b9dbb2dfc492190..e2aae0032c88cb8523c875a029b4758594f192cc 100644 (file)
@@ -1 +1 @@
-7e79e91b03e21058bbae2c0aab8f3e8ce09ae7f9
\ No newline at end of file
+0ffab36d1fc29125fdcf0d732073f77012dfcad4
\ No newline at end of file
index 48b00b113c5340849619c04eeca430301464e833..583a01f685fa89254b94ab9b92645fa4c1d0c3ac 100644 (file)
@@ -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 {<html>
 <head>
@@ -24,12 +24,9 @@ introduction on how to use <b>sqlite</b>.
 <h2>Getting Started</h2>
 
 <p>To start the <b>sqlite</b> 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 <b>sqlite</b> program will
+the name the file that holds the SQLite database.  If the file does
+not exist, a new one is created automatically.
+The <b>sqlite</b> 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!</p>