diff options
author | drh <drh@noemail.net> | 2004-05-31 18:22:25 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-05-31 18:22:25 +0000 |
commit | 75d82cc4bfd02b3d7cf2f0468d97a7c3485701cc (patch) | |
tree | 057916dcc8d40968124b54d3713d5572aae37b04 /www/docs.tcl | |
parent | 02f9f6b38febd65bde60c7c564d4d74bd894a47c (diff) | |
download | sqlite-75d82cc4bfd02b3d7cf2f0468d97a7c3485701cc.tar.gz sqlite-75d82cc4bfd02b3d7cf2f0468d97a7c3485701cc.zip |
Begin adding documentation for version 3.0. (CVS 1509)
FossilOrigin-Name: 2005bfdad03ac2aa70a82ba7ff9b2f469d129367
Diffstat (limited to 'www/docs.tcl')
-rw-r--r-- | www/docs.tcl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/www/docs.tcl b/www/docs.tcl index 8e9dad66d..f54416a2e 100644 --- a/www/docs.tcl +++ b/www/docs.tcl @@ -1,7 +1,7 @@ # This script generates the "docs.html" page that describes various # sources of documentation available for SQLite. # -set rcsid {$Id: docs.tcl,v 1.1 2004/05/31 15:06:30 drh Exp $} +set rcsid {$Id: docs.tcl,v 1.2 2004/05/31 18:22:26 drh Exp $} source common.tcl header {SQLite Documentation} puts { @@ -28,6 +28,10 @@ doc {Version 2 C/C++ API} {c_interface.html} { A description of the C/C++ interface bindings for SQLite through version 2.8 } +doc {Version 3 C/C++ API} {capi3.html} { + A description of the C/C++ interface bindings for SQLite version 3.0.0 + and following. +} doc {Tcl API} {tclsqlite.html} { A description of the TCL interface bindings for SQLite. @@ -36,6 +40,12 @@ doc {Tcl API} {tclsqlite.html} { doc {Version 2 DataTypes } {datatypes.html} { A description of how SQLite version 2 handles SQL datatypes. } +doc {Version 3 DataTypes } {datatype3.html} { + SQLite version 3 introduces the concept of manifest typing, where the + type of a value is associated with the value itself, not the column that + it is stored in. + This page describes data typing for SQLite version 3 in further detail. +} doc {Release History} {changes.html} { A chronology of SQLite releases going back to version 1.0.0 |