From: drh Date: Tue, 13 Sep 2005 07:00:05 +0000 (+0000) Subject: Updates to the documentation on the TCL bindings. (CVS 2692) X-Git-Tag: version-3.6.10~3467 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=111cf34f7a51f2dc0ee1c9236d9d2beb4a7fc8c7;p=thirdparty%2Fsqlite.git Updates to the documentation on the TCL bindings. (CVS 2692) FossilOrigin-Name: 94aa2d32459e1cee2df21fcc7df76c73dab903cd --- diff --git a/manifest b/manifest index f8b94dcd95..d1006c2073 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sa\scomment\stypo\sin\sthe\sprevious\scheck-in.\s(CVS\s2691) -D 2005-09-13T00:02:17 +C Updates\sto\sthe\sdocumentation\son\sthe\sTCL\sbindings.\s(CVS\s2692) +D 2005-09-13T07:00:06 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -303,11 +303,11 @@ F www/speed.tcl 656ed5be8cc9d536353e1a96927b925634a62933 F www/sqlite.tcl b51fd15f0531a54874de785a9efba323eecd5975 F www/support.tcl 3955da0fd82be68cc5c83d347c05095e80967051 F www/table-ex1b2.gif a588d21a2d88bb2a2ef0431fcc5ed5aa48c0bbc5 -F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955 +F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P 2ec2bd85741e36e410f05ff34de430ffbcf51eea -R b171a63011a54449dcf8edd901e67fad +P 49c952807dabd80bfeb46caf55856aaab988226c +R f4b62448ad898dcbe88a2a2c62a4eed4 U drh -Z 882a9bbd917dee19aef70ec8d9b5e775 +Z fae3e7ef8ecd16d6b2c3c92286508790 diff --git a/manifest.uuid b/manifest.uuid index 30f5ff1694..b047aed606 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -49c952807dabd80bfeb46caf55856aaab988226c \ No newline at end of file +94aa2d32459e1cee2df21fcc7df76c73dab903cd \ No newline at end of file diff --git a/www/tclsqlite.tcl b/www/tclsqlite.tcl index 5d67c87cc4..5eae90b027 100644 --- a/www/tclsqlite.tcl +++ b/www/tclsqlite.tcl @@ -1,7 +1,7 @@ # # Run this Tcl script to generate the tclsqlite.html file. # -set rcsid {$Id: tclsqlite.tcl,v 1.14 2005/08/02 17:38:19 drh Exp $} +set rcsid {$Id: tclsqlite.tcl,v 1.15 2005/09/13 07:00:06 drh Exp $} source common.tcl header {The Tcl interface to the SQLite library} proc METHOD {name text} { @@ -41,20 +41,27 @@ way widgets are created in Tk.

The name of the database is just the name of a disk file in which -the database is stored. +the database is stored. If the name of the database is an empty +string or the special name ":memory:" then a new database is created +in memory.

Once an SQLite database is open, it can be controlled using -methods of the dbcmd. There are currently 19 methods +methods of the dbcmd. There are currently 21 methods defined:

+

The sqlite3 also accepts an optional third argument called +the "mode". This argument is a legacy from SQLite version 2 and is +currently ignored.

+