Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix more typos in the file format document. (CVS 3102) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d7495be8060fe9e8fa2d2f81e215833d |
User & Date: | drh 2006-02-16 00:32:37.000 |
Context
2006-02-16
| ||
18:16 | Or the SQLITE_UTF16_ALIGNED with the encoding field in sqlite3_create_collation and UTF16 strings will always be aligned on an even byte boundary when passed into the comparison function. (CVS 3103) (check-in: 7a1701e8c5 user: drh tags: trunk) | |
00:32 | Fix more typos in the file format document. (CVS 3102) (check-in: d7495be806 user: drh tags: trunk) | |
00:31 | Fix a typo in the file format document. (CVS 3101) (check-in: fac0d202e1 user: drh tags: trunk) | |
Changes
Changes to www/formatchng.tcl.
1 2 3 | # # Run this Tcl script to generate the formatchng.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the formatchng.html file. # set rcsid {$Id: formatchng.tcl,v 1.17 2006/02/16 00:32:37 drh Exp $ } source common.tcl header {File Format Changes in SQLite} puts { <h2>File Format Changes in SQLite</h2> <p> Every effort is made to keep SQLite fully backwards compatible from |
︙ | ︙ | |||
185 186 187 188 189 190 191 | in database files that are typically 25% to 50% smaller. The new file format is very different and is completely incompatible with the version 2 file format.</p> </td> </tr> <tr> <td valign="top">3.0.8 to 3.1.0</td> | | | | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | in database files that are typically 25% to 50% smaller. The new file format is very different and is completely incompatible with the version 2 file format.</p> </td> </tr> <tr> <td valign="top">3.0.8 to 3.1.0</td> <td valign="top">2005-Jan-21</td> <td><p>Version 3.1.0 adds support for <a href="pragma.html#pragma_auto_vacuum">autovacuum mode</a>. Prior versions of SQLite will be able to read an autovacuumed database but will not be able to write it. If autovaccum is disabled (which is the default condition) then databases are fully forwards and backwards compatible.</p> </td> </tr> <tr> <td valign="top">3.1.6 to 3.2.0</td> <td valign="top">2005-Mar-19</td> <td><p>Version 3.2.0 adds support for the <a href="lang_altertable.html">ALTER TABLE ADD COLUMN</a> command. A database that has been modified by this command can not be read by a version of SQLite prior to 3.1.4. Running <a href="lang_vacuum.html">VACUUM</a> after the ALTER TABLE restores the database to a format such that it can be read by earlier |
︙ | ︙ |