From: jplyon Date: Sat, 10 May 2003 02:54:56 +0000 (+0000) Subject: Documented the "GO" and "\" command terminators. (CVS 963) X-Git-Tag: version-3.6.10~5105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9098056e6f14c0b1b8eb3a74aa69fb11f419e2fd;p=thirdparty%2Fsqlite.git Documented the "GO" and "\" command terminators. (CVS 963) FossilOrigin-Name: 6a76bd9590f372411e697f002285fe36ff3787ee --- diff --git a/manifest b/manifest index 5d41f5fe4f..30a0482480 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fixed\smetacharacter\scoloring\swith\sLP,\sRP,\sPLUS.\nAdded\smore\slinks.\s(CVS\s962) -D 2003-05-10T02:54:02 +C Documented\sthe\s"GO"\sand\s"\\"\scommand\sterminators.\s(CVS\s963) +D 2003-05-10T02:54:57 F Makefile.in 004acec253ecdde985c8ecd5b7c9accdb210378f F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd @@ -162,10 +162,10 @@ F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec F www/opcode.tcl 33c5f2061a05c5d227c72b84c080b3bf74c74f8b F www/quickstart.tcl 4e97bef825e6a4153c43afb9f97235fc4da278ab F www/speed.tcl cb4c10a722614aea76d2c51f32ee43400d5951be -F www/sqlite.tcl ffde644361e1d8e2a44a235ff23ad3b43d640df2 +F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218 -P ca75f1ca12cd88dce688e272d73c3c2282079547 -R 0a8fe2a8e044cb4f18a061cc4a59a233 +P 2bbb08049508829419dd9a3729241b97b017cf36 +R 1d25a4fc1144fa38b78eaed73ce64429 U jplyon -Z 66852ddc0c84a5e900bfd52905e03852 +Z d62bb0c1bbe259e95f45f644528a86de diff --git a/manifest.uuid b/manifest.uuid index 9f9a9ba8d3..fa3e62d099 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -2bbb08049508829419dd9a3729241b97b017cf36 \ No newline at end of file +6a76bd9590f372411e697f002285fe36ff3787ee \ No newline at end of file diff --git a/www/sqlite.tcl b/www/sqlite.tcl index e8b82750d4..b8fe90d14c 100644 --- a/www/sqlite.tcl +++ b/www/sqlite.tcl @@ -1,7 +1,7 @@ # # Run this Tcl script to generate the sqlite.html file. # -set rcsid {$Id: sqlite.tcl,v 1.19 2003/05/04 07:31:10 jplyon Exp $} +set rcsid {$Id: sqlite.tcl,v 1.20 2003/05/10 02:54:57 jplyon Exp $} puts { @@ -565,6 +565,18 @@ $ (((sqlite ex1 'select * from tbl1' |))) $ } +puts { +

Ending shell commands

+ +

+SQLite commands are normally terminated by a semicolon. In the shell +you can also use the word "GO" (case-insensitive) or a backslash character +"\" on a line by itself to end a command. These are used by SQL Server +and Oracle, respectively. These won't work in sqlite_exec(), +because the shell translates these into a semicolon before passing them +to that function.

+} + puts {

Compiling the sqlite program from sources