Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Disable the older fileformat document. This makes documentation builds run much faster. Also fix some typos. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7cab8e90e4272e090bcf6c6ecf067514 |
User & Date: | drh 2010-09-09 12:31:07.000 |
Context
2010-09-09
| ||
18:48 | Change some testable statement formatting marks in lang.in. (check-in: a4b6b57093 user: dan tags: trunk) | |
12:31 | Disable the older fileformat document. This makes documentation builds run much faster. Also fix some typos. (check-in: 7cab8e90e4 user: drh tags: trunk) | |
11:32 | Combine two requirements into one in lang_select.html. (check-in: 85d1540336 user: dan tags: trunk) | |
Changes
Changes to pages/docs.in.
︙ | ︙ | |||
225 226 227 228 229 230 231 | doc {SQLite File Format} {fileformat2.html} { A description of the format used for SQLite database and journal files, and other details required to create software to read and write SQLite databases without using SQLite. } | < < < < < < | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | doc {SQLite File Format} {fileformat2.html} { A description of the format used for SQLite database and journal files, and other details required to create software to read and write SQLite databases without using SQLite. } doc {Compilation Options} {compile.html} { This document describes the compile time options that may be set to modify the default behavior of the library or omit optional features in order to reduce binary size. } doc {Limits In SQLite} {limits.html} { |
︙ | ︙ |
Changes to pages/fileformat2.in.
1 2 3 4 5 6 7 8 9 10 | <title>File Format For SQLite Databases</title> <tcl>hd_keywords {file format} {second edition file format document}</tcl> <h1 align=center> The SQLite Database File Format </h1> <p>This document describes and defines the on-disk database file format used by SQLite.</p> | < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <title>File Format For SQLite Databases</title> <tcl>hd_keywords {file format} {second edition file format document}</tcl> <h1 align=center> The SQLite Database File Format </h1> <p>This document describes and defines the on-disk database file format used by SQLite.</p> <h2>1.0 The Database File</h2> <p>Most of the time the complete state of an SQLite database is contained a single file on disk called the "main database file".</p> <p>While performing a transaction, SQLite stores some temporary information in a second file called the "rollback journal". If the application or |
︙ | ︙ | |||
240 241 242 243 244 245 246 | exclusively. ^Newer versions of SQLite use the in-header database size if it is available but fall back to the actual file size if the in-header database size is not valid.</p> <p>^The in-header database size is only considered to be valid if it is non-zero and if the 4-byte [change counter] at offset 24 exactly matches the 4-byte [version-valid-for number] at offset 92. | | | | 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | exclusively. ^Newer versions of SQLite use the in-header database size if it is available but fall back to the actual file size if the in-header database size is not valid.</p> <p>^The in-header database size is only considered to be valid if it is non-zero and if the 4-byte [change counter] at offset 24 exactly matches the 4-byte [version-valid-for number] at offset 92. ^(The in-header database size is always valid when the database is only modified using recent versions of SQLite (versions 3.7.0 and later).)^ If a legacy version of SQLite writes to the database, it will not know to update the in-header database size and so the in-header database size could be incorrect. But legacy versions of SQLite will also leave the version-valid-for number at offset 92 unchanged so it will not match the change-counter. Hence, invalid in-header database sizes can be detected (and ignored) by observing when the change-counter does not match the version-valid-for number.</p> |
︙ | ︙ |