Documented the "GO" and "\" command terminators. (CVS 963)

FossilOrigin-Name: 6a76bd9590f372411e697f002285fe36ff3787ee
This commit is contained in:
jplyon 2003-05-10 02:54:56 +00:00
parent df2245df05
commit 9098056e6f
3 changed files with 20 additions and 8 deletions

@ -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

@ -1 +1 @@
2bbb08049508829419dd9a3729241b97b017cf36
6a76bd9590f372411e697f002285fe36ff3787ee

@ -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>