Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in the documentation reported by Karol Swietlicki. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | 3.17 |
Files: | files | file ages | folders |
SHA1: |
d24b5395d04f8484e68ec968ccfe12f3 |
User & Date: | drh 2017-02-22 12:43:32.804 |
Context
2017-03-04
| ||
20:09 | Fix typo reported by Jeffrey Mattox. (check-in: 1a4aa7fa1d user: drh tags: 3.17) | |
2017-02-22
| ||
12:43 | Fix typos in the documentation reported by Karol Swietlicki. (check-in: d24b5395d0 user: drh tags: 3.17) | |
2017-02-15
| ||
22:44 | Fix a harmless typo in the rollback journal checksum algorithm description. (check-in: ebd7ef38cc user: drh tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
41 42 43 44 45 46 47 | </tcl> <h1>Recommended Compile-time Options</h1> <p>The following compile-time options are recommended for applications that are able to use them, in order to minimized the number of CPU cycles and the bytes of memory used by SQLite. | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | </tcl> <h1>Recommended Compile-time Options</h1> <p>The following compile-time options are recommended for applications that are able to use them, in order to minimized the number of CPU cycles and the bytes of memory used by SQLite. Not all of these compile-time options are usable by every application. For example, the SQLITE_THREADSAFE=0 option is only usable by applications that never access SQLite from more than one thread at a time. And the SQLITE_OMIT_PROGESS_CALLBACK option is only usable by applications that doe not use the [sqlite3_progress_handler()] interface. And so forth. <p>It is impossible to test every possible combination of compile-time options for SQLite. But the following set of compile-time options is |
︙ | ︙ |
Changes to pages/fileformat2.in.
︙ | ︙ | |||
1661 1662 1663 1664 1665 1666 1667 | <p>^If M is -1 in the initial journal header, then the number of page records that follow is computed by computing how many page records will fit in the available space of the remainder of the journal file.</p> <tcl>hd_fragment walformat {WAL format}</tcl> <h1>The Write-Ahead Log</h1> | | | 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 | <p>^If M is -1 in the initial journal header, then the number of page records that follow is computed by computing how many page records will fit in the available space of the remainder of the journal file.</p> <tcl>hd_fragment walformat {WAL format}</tcl> <h1>The Write-Ahead Log</h1> <p>Beginning with [version 3.7.0] ([dateof:3.7.0]), SQLite supports a new transaction control mechanism called "[WAL | write-ahead log]" or "[WAL]". ^When a database is in WAL mode, all connections to that database must use the WAL. ^A particular database will use either a rollback journal or a WAL, but not both at the same time. ^The WAL is always located in the same directory as the database file and has the same name as the database file but with the string |
︙ | ︙ |
Changes to pages/pragma.in.
︙ | ︙ | |||
243 244 245 246 247 248 249 | Pragma {automatic_index} { <p>^(<b>PRAGMA automatic_index; <br>PRAGMA automatic_index = </b><i>boolean</i><b>;</b></p> <p>Query, set, or clear the [automatic indexing] capability.)^ <p>[Automatic indexing] is enabled by default as of | | | 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | Pragma {automatic_index} { <p>^(<b>PRAGMA automatic_index; <br>PRAGMA automatic_index = </b><i>boolean</i><b>;</b></p> <p>Query, set, or clear the [automatic indexing] capability.)^ <p>[Automatic indexing] is enabled by default as of [version 3.7.17] ([dateof:3.7.17]), but this might change in future releases of SQLite. } Pragma {auto_vacuum} { <p><b>PRAGMA DB.auto_vacuum;<br> PRAGMA DB.auto_vacuum = </b> <i>0 | NONE | 1 | FULL | 2 | INCREMENTAL</i><b>;</b></p> |
︙ | ︙ |