From: drh Date: Sat, 25 Jun 2005 19:42:37 +0000 (+0000) Subject: Documentation fixes. Ticket #1306. (CVS 2529) X-Git-Tag: version-3.6.10~3630 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a15132904d28c1f406f52b0c6daaf6dbbc46ea4;p=thirdparty%2Fsqlite.git Documentation fixes. Ticket #1306. (CVS 2529) FossilOrigin-Name: 3dcdb7942ea9a9e5d708a198ba5183103d5075d9 --- diff --git a/manifest b/manifest index f44429b215..0a6ac1e4f1 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C The\sTCL\sinterface\sbinds\svariables\sas\sBLOB\sonly\sif\sthey\shave\sa\sbytearray\r\nrepresentation\sbut\sno\stext\srepresentation.\sTicket\s#1287.\s(CVS\s2528) -D 2005-06-25T19:31:48 +C Documentation\sfixes.\s\sTicket\s#1306.\s(CVS\s2529) +D 2005-06-25T19:42:38 F Makefile.in 64a6635ef44a98325e0cffe8d67669920a3dad47 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -266,7 +266,7 @@ F www/faq.tcl 49f31a703f74c71ce66da646aaf18b07a5042672 F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059 F www/formatchng.tcl 053ddb73646701353a5b1c9ca6274d5900739b45 F www/index.tcl 9527f4eed69739cf5f81b3d75e0478d1c84d0a8a -F www/lang.tcl be57d5f23a46b8afa3753b38f65ea22d26499b80 +F www/lang.tcl 0083a59de9081f579964a6c3f701b9af3e29bfb6 F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c F www/nulls.tcl ec35193f92485b87b90a994a01d0171b58823fcf @@ -283,7 +283,7 @@ F www/tclsqlite.tcl 425be741b8ae664f55cb1ef2371aab0a75109cf9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b -P 17631785f9ee8ab280c82677eb53886912e085bc -R 9ec95f28757d0a0d2556cee5684b2d92 +P 8c99dca60aebee0ec5de9ed11350de864bc76584 +R f298a28bc4d82dbd5adfaab265db9284 U drh -Z f4f5d0f3cdc7483f729807d727fb5289 +Z e8b0b3df38f0878df8807440d3147bbe diff --git a/manifest.uuid b/manifest.uuid index ff19bf0293..59e0cd1761 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -8c99dca60aebee0ec5de9ed11350de864bc76584 \ No newline at end of file +3dcdb7942ea9a9e5d708a198ba5183103d5075d9 \ No newline at end of file diff --git a/www/lang.tcl b/www/lang.tcl index 2deac5439f..32bef70e8b 100644 --- a/www/lang.tcl +++ b/www/lang.tcl @@ -1,7 +1,7 @@ # # Run this Tcl script to generate the lang-*.html files. # -set rcsid {$Id: lang.tcl,v 1.91 2005/06/25 18:42:16 drh Exp $} +set rcsid {$Id: lang.tcl,v 1.92 2005/06/25 19:42:38 drh Exp $} source common.tcl if {[llength $argv]>0} { @@ -749,8 +749,7 @@ the statement that caused the trigger program to execute and any subsequent

Triggers are removed using the DROP TRIGGER -statement. Non-temporary triggers cannot be added on a table in an -attached database.

+statement.

} @@ -782,8 +781,7 @@ the table is created in the main database.

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.

+command.

} @@ -836,9 +834,11 @@ the disk. The only way to recover the index is to reenter the appropriate CREATE INDEX command.

The DROP INDEX statement does not reduce the size of the database -file. Empty space in the database is retained for later INSERTs. To +file in the default mode. +Empty space in the database is retained for later INSERTs. To remove free space in the database, use the VACUUM -command.

+command. If AUTOVACUUM mode is enabled for a database then space +will be freed automatically by DROP INDEX.

} @@ -853,13 +853,14 @@ puts { "#createtable">CREATE TABLE statement. The name specified is the table name. It is completely removed from the database schema and the disk file. The table can not be recovered. All indices associated -with the table are also deleted. Non-temporary tables in an attached -database cannot be dropped.

+with the table are also deleted.

The DROP TABLE statement does not reduce the size of the database -file. Empty space in the database is retained for later INSERTs. To +file in the default mode. Empty space in the database is retained for +later INSERTs. To remove free space in the database, use the VACUUM -command.

+command. If AUTOVACUUM mode is enabled for a database then space +will be freed automatically by DROP TABLE.

} @@ -871,8 +872,7 @@ puts {

The DROP TRIGGER statement removes a trigger created by the CREATE TRIGGER statement. The trigger is deleted from the database schema. Note that triggers are automatically -dropped when the associated table is dropped. Non-temporary triggers -cannot be dropped on attached tables.

+dropped when the associated table is dropped.

} @@ -886,8 +886,7 @@ puts {

The DROP VIEW statement removes a view created by the CREATE VIEW statement. The name specified is the view name. It is removed from the database schema, but no actual data -in the underlying base tables is modified. Non-temporary views in -attached databases cannot be dropped.

+in the underlying base tables is modified.

}