From: jplyon Date: Sat, 7 Jun 2003 08:56:09 +0000 (+0000) Subject: Hyperlinks and minor additions/corrections for lang.tcl (CVS 1011) X-Git-Tag: version-3.6.10~5057 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5fa7eb0dd96101d2410a3f5affc19921278b5583;p=thirdparty%2Fsqlite.git Hyperlinks and minor additions/corrections for lang.tcl (CVS 1011) FossilOrigin-Name: 685a179aae535431ec46922f1aff50a54112e959 --- diff --git a/manifest b/manifest index 1ff9d6d556..99bd44cabf 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index 51b178fcf9..5c759b9bca 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -a97dca73aed0b42d8dcf944360667ae93c5324fd \ No newline at end of file +685a179aae535431ec46922f1aff50a54112e959 \ No newline at end of file diff --git a/www/lang.tcl b/www/lang.tcl index b537ffb58d..a480655e70 100644 --- a/www/lang.tcl +++ b/www/lang.tcl @@ -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 { @@ -619,13 +619,16 @@ CREATE [TEMP | TEMPORARY] VIEW AS } puts { -

The CREATE VIEW command assigns a name to a pre-packaged SELECT +

The CREATE VIEW command assigns a name to a pre-packaged +SELECT statement. Once the view is created, it can be used in the FROM clause of another SELECT in place of a table name.

-

You cannot COPY, INSERT or UPDATE a view. Views are read-only -in SQLite. Views are removed with the DROP VIEW +

You cannot COPY, DELETE, INSERT or UPDATE a view. Views are read-only +in SQLite. However, in many cases you can use a +TRIGGER on the view to accomplish the same thing. Views are removed +with the DROP VIEW command. Non-temporary views cannot be created on tables in an attached database.

} @@ -774,7 +777,7 @@ puts {

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.

+subcomponents of most other commands.

SQLite understands the following binary operators, in order from highest to lowest precedence:

@@ -1413,9 +1416,12 @@ with caution.

the library compile-time options to override this setting.

+
  • PRAGMA vdbe_trace = ON;
    PRAGMA vdbe_trace = OFF;

    Turn tracing of the virtual database engine inside of the - SQLite library on and off. This is used for debugging.

  • + SQLite library on and off. This is used for debugging. See the + VDBE documentation for more + information.

    No error message is generated if an unknown pragma is issued.