Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d2dedc4ab1cc00b0a3652c8fa005e24f |
User & Date: | drh 2014-09-21 16:57:05.721 |
Context
2014-09-24
| ||
13:25 | Clarify that bound parameters may not appear in the DEFAULT clause of a CREATE TABLE statement. (check-in: d59078695f user: drh tags: trunk) | |
2014-09-21
| ||
16:58 | Cherrypick typo fixes from trunk. (check-in: d72427edab user: drh tags: version-3.8.6) | |
16:57 | Fix typos. (check-in: d2dedc4ab1 user: drh tags: trunk) | |
2014-09-20
| ||
00:56 | Update the change log to include the latest revisions. (check-in: cb6d3fd5fe user: drh tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
150 151 152 153 154 155 156 | COMPILE_OPTION {SQLITE_DEFAULT_WAL_AUTOCHECKPOINT=<i><pages></i>} { This macro sets the default page count for the [WAL] [checkpointing | automatic checkpointing] feature. If unspecified, the default page count is 1000. } COMPILE_OPTION {SQLITE_DEFAULT_WORKER_THREADS=<i>N</i>} { | | | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | COMPILE_OPTION {SQLITE_DEFAULT_WAL_AUTOCHECKPOINT=<i><pages></i>} { This macro sets the default page count for the [WAL] [checkpointing | automatic checkpointing] feature. If unspecified, the default page count is 1000. } COMPILE_OPTION {SQLITE_DEFAULT_WORKER_THREADS=<i>N</i>} { This macro sets the default value for the [SQLITE_LIMIT_WORKER_THREADS] parameter. The [SQLITE_LIMIT_WORKER_THREADS] parameter sets the maximum number of auxiliary threads that a single [prepared statement] will launch to assist it with a query. If not specified, the default maximum is 0. The value set here cannot be more than [SQLITE_MAX_WORKER_THREADS]. } COMPILE_OPTION {SQLITE_FTS3_MAX_EXPR_DEPTH=<i>N</i>} { This macro sets the maximum depth of the search tree that corresponds to the right-hand side of the MATCH operator in an [FTS3] or [FTS4] full-text index. The full-text search uses a recursive algorithm, so the depth of the tree is limited to prevent using too much stack space. The default |
︙ | ︙ | |||
418 419 420 421 422 423 424 | <h2>1.4 Options To Enable Features Normally Turned Off</h2> <tcl> COMPILE_OPTION {SQLITE_ALLOW_URI_AUTHORITY} { [URI filenames] normally throw an error is the authority section is not either empty or "localhost". However, if SQLite is compiled with the SQLITE_ALLOW_URI_AUTHORITY compile-time option, then the URI is | | | 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | <h2>1.4 Options To Enable Features Normally Turned Off</h2> <tcl> COMPILE_OPTION {SQLITE_ALLOW_URI_AUTHORITY} { [URI filenames] normally throw an error is the authority section is not either empty or "localhost". However, if SQLite is compiled with the SQLITE_ALLOW_URI_AUTHORITY compile-time option, then the URI is converted into a Uniform Naming Convention (UNC) filename and passed down to the underlying operating system that way. <p> Some future versions of SQLite may change to enable this feature by default. } COMPILE_OPTION {SQLITE_ALLOW_COVERING_INDEX_SCAN=<i><0 or 1></i>} { This C-preprocess macro determines the default setting of the |
︙ | ︙ |
Changes to pages/download.in.
︙ | ︙ | |||
168 169 170 171 172 173 174 | This ZIP archive contains all C source code for SQLite VERSION combined into a small number of source files, where no source file is longer than 32767 lines of code. } Product {YEAR/sqlite-autoconf-VVV.tar.gz} { A tarball containing the [amalgamation] | | | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | This ZIP archive contains all C source code for SQLite VERSION combined into a small number of source files, where no source file is longer than 32767 lines of code. } Product {YEAR/sqlite-autoconf-VVV.tar.gz} { A tarball containing the [amalgamation] for SQLite VERSION together with a configure script and makefile for building it. This tarball also contains in the "tea" subdirectory a separate configure script and makefile compatible with the <a href="http://www.tcl.tk/doc/tea/">Tcl Extension Architecture (TEA)</a> for building the TCL bindings to SQLite. } {amalgtarball {amalgamation tarball}} |
︙ | ︙ |