]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Documented the "GO" and "\" command terminators. (CVS 963)
authorjplyon <jplyon@noemail.net>
Sat, 10 May 2003 02:54:56 +0000 (02:54 +0000)
committerjplyon <jplyon@noemail.net>
Sat, 10 May 2003 02:54:56 +0000 (02:54 +0000)
FossilOrigin-Name: 6a76bd9590f372411e697f002285fe36ff3787ee

manifest
manifest.uuid
www/sqlite.tcl

index 5d41f5fe4f0334eeb07e3ff99691dda4b25cfc11..30a048248005fb1347af0bba701cd45352691365 100644 (file)
--- 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
index 9f9a9ba8d3d180f5bd266febaac367fde37508b7..fa3e62d099851156bb3e2a918c6bd2ef2ccfc995 100644 (file)
@@ -1 +1 @@
-2bbb08049508829419dd9a3729241b97b017cf36
\ No newline at end of file
+6a76bd9590f372411e697f002285fe36ff3787ee
\ No newline at end of file
index e8b82750d44b4f06af6b2803420dc49dc4724394..b8fe90d14ceb7f138b75513cc794696115227fd6 100644 (file)
@@ -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 {<html>
 <head>
@@ -565,6 +565,18 @@ $ (((sqlite ex1 'select * from tbl1' |)))
 $
 }
 
+puts {
+<h2>Ending shell commands</h2>
+
+<p>
+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 <b>sqlite_exec()</b>, 
+because the shell translates these into a semicolon before passing them 
+to that function.</p>
+}
+
 puts {
 <h2>Compiling the sqlite program from sources</h2>