Documentation updates. (CVS 2796)

FossilOrigin-Name: 2ffb90c39d0b60de9a692326ca3f2595c1fc97d0
This commit is contained in:
drh 2005-12-02 01:57:42 +00:00
parent 054889ec6d
commit e90a9ffa12
5 changed files with 22 additions and 15 deletions

View File

@ -1,5 +1,5 @@
C Restructure\sthe\sOS\sinterface\syet\sagain.\s\sThis\stime\smake\sthe\sOsFile\sobject\na\svirtual\sbase\sclass\swhich\sis\ssubclassed\sfor\sunix,\swindows,\sand\sthe\scrash\ntest\ssimulator.\s\sAdd\sthe\snew\sfile\s"os.c"\sfor\scommon\sos\slayer\scode.\s\sMove\nall\sOS-specific\sroutines\sinto\sthe\ssqlite3Os\sstructure.\s(CVS\s2795)
D 2005-11-30T03:20:31
C Documentation\supdates.\s(CVS\s2796)
D 2005-12-02T01:57:43
F Makefile.in e3c6b3a38d734d41574c04f2fc90d18de2b87102
F Makefile.linux-gcc aee18d8a05546dcf1888bd4547e442008a49a092
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -282,7 +282,7 @@ F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0
F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
F www/capi3ref.tcl 885f2aa112e2e9b8822753bf2972d5afd0cfeba9
F www/capi3ref.tcl c4bf23a0110ad0ffdf4fe6b74d464965116dcea4
F www/changes.tcl 5f09e69c5498cf388b3158978664db090708ed83
F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083
F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
@ -315,16 +315,16 @@ F www/optimizer.tcl d6812a10269bd0d7c488987aac0ad5036cace9dc
F www/optimizing.tcl f0b2538988d1bbad16cbfe63ec6e8f48c9eb04e5
F www/optoverview.tcl 815df406a38c9f69b27d37e8f7ede004c6d9f19e
F www/pragma.tcl 44f7b665ca598ad24724f35991653638a36a6e3f
F www/quickstart.tcl 6f6f694b6139be2d967b1492eb9a6bdf7058aa60
F www/quickstart.tcl 2f3daf8038e82a102e1e8cc877aafa7a413f5f11
F www/speed.tcl 656ed5be8cc9d536353e1a96927b925634a62933
F www/sqlite.tcl b51fd15f0531a54874de785a9efba323eecd5975
F www/sqlite.tcl a883ed7b47371d31d471e6aea5ed1f972ae8e1be
F www/support.tcl 3955da0fd82be68cc5c83d347c05095e80967051
F www/table-ex1b2.gif a588d21a2d88bb2a2ef0431fcc5ed5aa48c0bbc5
F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P fa1d7ecfcc648fbe9fc6d92e080cf937bdc9c439
R 9be695e305d95d89dc0ca507829a93a0
P bd8740d1aecba69e1b5d64d43db07e8ad8841f07
R 560e5f5f3270d23cafb702eb82b09cf1
U drh
Z 170795265fa237ab9dcb51e37d55abf3
Z 01e62cd8f9861c89dbbdef8038a0568c

View File

@ -1 +1 @@
bd8740d1aecba69e1b5d64d43db07e8ad8841f07
2ffb90c39d0b60de9a692326ca3f2595c1fc97d0

View File

@ -1,4 +1,4 @@
set rcsid {$Id: capi3ref.tcl,v 1.24 2005/07/22 22:53:16 drh Exp $}
set rcsid {$Id: capi3ref.tcl,v 1.25 2005/12/02 01:57:43 drh Exp $}
source common.tcl
header {C/C++ Interface For SQLite Version 3}
puts {
@ -126,6 +126,12 @@ api {} {
sqlite3_prepare() or sqlite3_reset() and before sqlite3_step().
Bindings are not cleared by the sqlite3_reset() routine.
Unbound parameters are interpreted as NULL.
These routines return SQLITE_OK on success or an error code if
anything goes wrong. SQLITE_RANGE is returned if the parameter
index is out of range. SQLITE_NOMEM is returned if malloc fails.
SQLITE_MISUSE is returned if these routines are called on a virtual
machine that is the wrong state or which has already been finalized.
}
api {} {

View File

@ -1,7 +1,7 @@
#
# Run this TCL script to generate HTML for the quickstart.html file.
#
set rcsid {$Id: quickstart.tcl,v 1.6 2004/10/19 01:31:20 drh Exp $}
set rcsid {$Id: quickstart.tcl,v 1.7 2005/12/02 01:57:43 drh Exp $}
source common.tcl
header {SQLite In 5 Minutes Or Less}
puts {
@ -24,6 +24,7 @@ create a new database named "test.db". (You can use a different name if
you like.)</p></li>
<li><p>Enter SQL commands at the prompt to create and populate the
new database.</p></li>
<li><p>Additional documentation is available <a href="sqlite.html">here</a></li>
</ul>
<h2>Write Programs That Use SQLite</h2>
@ -105,4 +106,4 @@ int main(int argc, char **argv){
</li>
</ul>
}
footer {$Id: quickstart.tcl,v 1.6 2004/10/19 01:31:20 drh Exp $}
footer {$Id: quickstart.tcl,v 1.7 2005/12/02 01:57:43 drh Exp $}

View File

@ -1,11 +1,11 @@
#
# Run this Tcl script to generate the sqlite.html file.
#
set rcsid {$Id: sqlite.tcl,v 1.22 2004/05/31 15:06:30 drh Exp $}
set rcsid {$Id: sqlite.tcl,v 1.23 2005/12/02 01:57:43 drh Exp $}
source common.tcl
header {sqlite: A program of interacting with SQLite databases}
header {sqlite: A command-line access program for SQLite databases}
puts {
<h2>sqlite: A command-line program to administer SQLite databases</h2>
<h2>sqlite: A command-line access program for SQLite databases</h2>
<p>The SQLite library includes a simple command-line utility named
<b>sqlite</b> that allows the user to manually enter and execute SQL