Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 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. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
85f5f65d9fd63b1e8809927edd5fb470 |
User & Date: | drh 2019-03-25 14:30:02.124 |
Context
2019-03-25
| ||
15:19 | Update the CLI documentation to describe the new --insert option to ".archive" and the behavior change to the --update option. (check-in: bf3c223723 user: drh tags: trunk) | |
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-23
| ||
16:09 | Add a note about the ".breakpoint" shell command to the "debugging.html" page. (check-in: 61444ae7e4 user: drh tags: trunk) | |
Changes
Changes to pages/cli.in.
︙ | ︙ | |||
1243 1244 1245 1246 1247 1248 1249 | <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] | | | 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 | <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]. |
︙ | ︙ |