Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Import typo fixes from trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.27 |
Files: | files | file ages | folders |
SHA3-256: |
6f80f0890f5779d1a1ecfbe66f8f45d9 |
User & Date: | drh 2019-03-25 14:32:03.998 |
Context
2019-04-01
| ||
14:44 | Improvements to VACUUM documentation - describe more clearly when another transaction might block a vacuum. (check-in: 0f897a0268 user: drh tags: branch-3.27) | |
2019-03-25
| ||
14:32 | Import typo fixes from trunk. (check-in: 6f80f0890f user: drh tags: branch-3.27) | |
14:30 | Fix a documentation error: The preprocessor macro is SQLITE_HAVE_ZLIB, not SQLITE_USE_ZLIB. However the USE_ZLIB=1 option is what Makefile.msc expects. (check-in: 85f5f65d9f user: drh tags: trunk) | |
2019-03-14
| ||
01:05 | Fix a documentation typo. No changes to code. (check-in: 81fdc2faea user: mistachkin tags: trunk) | |
2019-03-04
| ||
23:49 | New expensify logo. (check-in: 81ea50fc28 user: drh tags: branch-3.27) | |
Changes
Changes to pages/cli.in.
︙ | ︙ | |||
1202 1203 1204 1205 1206 1207 1208 | <p> The following additional compile-time options are recommended in order to provide a full-featured command-line shell: <ul> <li> [-DSQLITE_THREADSAFE=0] <li> [-DSQLITE_ENABLE_EXPLAIN_COMMENTS] | | | 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 | <p> The following additional compile-time options are recommended in order to provide a full-featured command-line shell: <ul> <li> [-DSQLITE_THREADSAFE=0] <li> [-DSQLITE_ENABLE_EXPLAIN_COMMENTS] <li> [-DSQLITE_HAVE_ZLIB] <li> [-DSQLITE_INTROSPECTION_PRAGMAS] <li> [-DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION] <li> [-DSQLITE_ENABLE_STMTVTAB] <li> [-DSQLITE_ENABLE_DBPAGE_VTAB] <li> [-DSQLITE_ENABLE_DBSTAT_VTAB] <li> [-DSQLITE_ENABLE_OFFSET_SQL_FUNC] <li> [-DSQLITE_ENABLE_JSON1] |
︙ | ︙ |
Changes to pages/compile.in.
︙ | ︙ | |||
1241 1242 1243 1244 1245 1246 1247 | COMPILE_OPTION {SQLITE_USE_FCNTL_TRACE} { This option causes SQLite to issue extra [SQLITE_FCNTL_TRACE] file controls to provide supplementary information to the VFS. The "vfslog.c" extension makes use of this to provide enhanced logs of VFS activity. } | | | 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 | COMPILE_OPTION {SQLITE_USE_FCNTL_TRACE} { This option causes SQLite to issue extra [SQLITE_FCNTL_TRACE] file controls to provide supplementary information to the VFS. The "vfslog.c" extension makes use of this to provide enhanced logs of VFS activity. } COMPILE_OPTION {SQLITE_HAVE_ZLIB} { This option causes some extensions to link against the [https://zlib.net|zlib compression library]. <p> This option has no affect on the SQLite core. It is only used by extensions. This is option is necessary for the commpression and decompression functions that are part of [SQL Archive] support in the [command-line shell]. |
︙ | ︙ |
Changes to pages/rescode.in.
︙ | ︙ | |||
222 223 224 225 226 227 228 | abundance of primary disk space because the error occurs when writing into [temporary disk files] on a system where temporary files are stored on a separate partition with much less space that the primary disk. } RESCODE SQLITE_CANTOPEN 14 { The SQLITE_CANTOPEN result code indicates that SQLite was unable to open a file. The file in question might be a primary database file | | | 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | abundance of primary disk space because the error occurs when writing into [temporary disk files] on a system where temporary files are stored on a separate partition with much less space that the primary disk. } RESCODE SQLITE_CANTOPEN 14 { The SQLITE_CANTOPEN result code indicates that SQLite was unable to open a file. The file in question might be a primary database file or one of several [temporary disk files]. } RESCODE SQLITE_PROTOCOL 15 { The SQLITE_PROTOCOL result code indicates a problem with the file locking protocol used by SQLite. The SQLITE_PROTOCOL error is currently only returned when using [WAL mode] and attempting to start a new transaction. There is a race condition that can occur when two separate [database connections] both try to start a transaction at the same time |
︙ | ︙ |