Index: www/pragma.tcl ================================================================== --- www/pragma.tcl +++ www/pragma.tcl @@ -1,9 +1,9 @@ # # Run this Tcl script to generate the pragma.html file. # -set rcsid {$Id: pragma.tcl,v 1.19 2007/01/27 02:24:57 drh Exp $} +set rcsid {$Id: pragma.tcl,v 1.20 2007/02/02 12:33:17 drh Exp $} source common.tcl header {Pragma statements supported by SQLite} proc Section {name {label {}}} { puts "\n
" @@ -226,15 +226,15 @@
PRAGMA legacy_file_format = ON | OFF

This pragma sets or queries the value of the legacy_file_format flag. When this flag is on, new SQLite databases are created in a file format that is readable and writable by all versions of SQLite going back to 3.0.0. When the flag is off, new databases - are created using the latest file format which might to be + are created using the latest file format which might not be readable or writable by older versions of SQLite.

-

This flag only effects newly created databases. It has no - effect on databases that already exists.

+

This flag only affects newly created databases. It has no + effect on databases that already exist.

  • PRAGMA page_size;