Index: www/tclsqlite.tcl ================================================================== --- www/tclsqlite.tcl +++ www/tclsqlite.tcl @@ -1,9 +1,9 @@ # # 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} { puts "\n

The \"$name\" method

\n" puts $text @@ -39,24 +39,31 @@ 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.