]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Hyperlinks and minor additions/corrections for lang.tcl (CVS 1011)
authorjplyon <jplyon@noemail.net>
Sat, 7 Jun 2003 08:56:09 +0000 (08:56 +0000)
committerjplyon <jplyon@noemail.net>
Sat, 7 Jun 2003 08:56:09 +0000 (08:56 +0000)
FossilOrigin-Name: 685a179aae535431ec46922f1aff50a54112e959

manifest
manifest.uuid
www/lang.tcl

index 1ff9d6d5565d1a75f0d26ada7a53a9b7ace993aa..99bd44cabf727752b93187261fbc8799c2b67cb3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Extend\sthe\sauthorization\smechanism\sto\sdisallow\sthe\sATTACH\sand\sDETACH\scommands.\nTicket\s#340.\s(CVS\s1010)
-D 2003-06-06T19:00:42
+C Hyperlinks\sand\sminor\sadditions/corrections\sfor\slang.tcl\s(CVS\s1011)
+D 2003-06-07T08:56:09
 F Makefile.in 98a14dc13a78ca0e12007e974c93aeb098db7f68
 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -155,7 +155,7 @@ F www/faq.tcl 88d3b95d9cd8e374772daa3a646c4d107e7f3e9b
 F www/fileformat.tcl d9b586416c0d099b82e02e469d532c9372f98f3f
 F www/formatchng.tcl cbaf0f410096c71f86a7537cf9249fa04b9a659c
 F www/index.tcl a34315cada875af0b098b4c45981da8ab33fe7b6
-F www/lang.tcl 0d3037b9d3be2450e03ff588bfbb048597907cf3
+F www/lang.tcl bc92ee5c8f77d1499040b7556de9a6c76703b2ba
 F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
 F www/nulls.tcl 29497dac2bc5b437aa7e2e94577dad4d8933ed26
 F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec
@@ -165,7 +165,7 @@ F www/speed.tcl 296cc5632d069b56d3ef5409ca0df90f486c10fb
 F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125
 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331
 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
-P 09546972991601697925c10b6ef31694b0be2385
-R 2688e6833b4c30f26b7524864dd64eb2
-U drh
-Z 160fa4fe206cb761a89db5dbd54f41dd
+P a97dca73aed0b42d8dcf944360667ae93c5324fd
+R 990a0b4df2d173c5db871c0c6065292b
+U jplyon
+Z a49d0c549bf8970eaa53731030e4c6b4
index 51b178fcf90a6970e92122287c42abc84ae63569..5c759b9bcabf73eb93b69dc02c2bf3e989c761ea 100644 (file)
@@ -1 +1 @@
-a97dca73aed0b42d8dcf944360667ae93c5324fd
\ No newline at end of file
+685a179aae535431ec46922f1aff50a54112e959
\ No newline at end of file
index b537ffb58d9f6ed11c218b94b7712b762d157765..a480655e70c23785179c9ab24dab4740ff93400f 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Run this Tcl script to generate the sqlite.html file.
 #
-set rcsid {$Id: lang.tcl,v 1.59 2003/05/29 04:21:39 jplyon Exp $}
+set rcsid {$Id: lang.tcl,v 1.60 2003/06/07 08:56:09 jplyon Exp $}
 
 puts {<html>
 <head>
@@ -619,13 +619,16 @@ CREATE [TEMP | TEMPORARY] VIEW <view-name> AS <select-statement>
 }
 
 puts {
-<p>The CREATE VIEW command assigns a name to a pre-packaged SELECT
+<p>The CREATE VIEW command assigns a name to a pre-packaged 
+<a href="#select">SELECT</a>
 statement.  Once the view is created, it can be used in the FROM clause
 of another SELECT in place of a table name.
 </p>
 
-<p>You cannot COPY, INSERT or UPDATE a view.  Views are read-only 
-in SQLite.  Views are removed with the <a href="#dropview">DROP VIEW</a> 
+<p>You cannot COPY, DELETE, INSERT or UPDATE a view.  Views are read-only 
+in SQLite.  However, in many cases you can use a <a href="#trigger">
+TRIGGER</a> on the view to accomplish the same thing.  Views are removed 
+with the <a href="#dropview">DROP VIEW</a> 
 command.  Non-temporary views cannot be created on tables in an attached 
 database.</p>
 }
@@ -774,7 +777,7 @@ puts {
 <p>This section is different from the others.  Most other sections of
 this document talks about a particular SQL command.  This section does
 not talk about a standalone command but about "expressions" which are 
-subcomponent of most other commands.</p>
+subcomponents of most other commands.</p>
 
 <p>SQLite understands the following binary operators, in order from
 highest to lowest precedence:</p>
@@ -1413,9 +1416,12 @@ with caution.</p>
     the library compile-time options to override this setting. </p>
     </li>
 
+<a name="pragma_vdbe_trace"></a>
 <li><p><b>PRAGMA vdbe_trace = ON;<br>PRAGMA vdbe_trace = OFF;</b></p>
     <p>Turn tracing of the virtual database engine inside of the
-    SQLite library on and off.  This is used for debugging.</p></li>
+    SQLite library on and off.  This is used for debugging.  See the 
+    <a href="vdbe.html#trace">VDBE documentation</a> for more 
+    information.</p></li>
 </ul>
 
 <p>No error message is generated if an unknown pragma is issued.