Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the documentation for SQLITE_DEFAULT_AUTOVACUUM to cover the incremental vacuum option. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
39f2677bb7581972e680c5c2be4d671c |
User & Date: | drh 2010-07-27 13:22:18.000 |
Context
2010-07-27
| ||
15:25 | Add support for gathering evidence from SLT. (check-in: 0b915cf1f8 user: drh tags: trunk) | |
13:22 | Update the documentation for SQLITE_DEFAULT_AUTOVACUUM to cover the incremental vacuum option. (check-in: 39f2677bb7 user: drh tags: trunk) | |
08:10 | Fix race condition in search box javascript that could occur if the user started to enter text before the page was completely loaded. (check-in: 902e250d41 user: dan tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
33 34 35 36 37 38 39 | hd_keywords $all } hd_puts <p><b>$name</b></p> regsub -all "\n\\s*\n" $text "</p>\n\n<p>" text hd_resolve <blockquote><p>$text</p></blockquote> } | | | > | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | hd_keywords $all } hd_puts <p><b>$name</b></p> regsub -all "\n\\s*\n" $text "</p>\n\n<p>" text hd_resolve <blockquote><p>$text</p></blockquote> } COMPILE_OPTION {SQLITE_DEFAULT_AUTOVACUUM=<i><0 or 1 or 2></i>} { This macro determines if SQLite creates databases with the [auto_vacuum] flag set by default to OFF (0), FULL (1), or INCREMENTAL (2). The default value is 0 meaning that databases are created with auto-vacuum turned off. In any case the compile-time default may be overridden by the [PRAGMA auto_vacuum] command. } COMPILE_OPTION {SQLITE_DEFAULT_CACHE_SIZE=<i><pages></i>} { This macro sets the default size of the page-cache for each attached database, in pages. This can be overridden by the [PRAGMA cache_size] command. The default value is 2000. |
︙ | ︙ |