Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the cksumvfs document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.32 |
Files: | files | file ages | folders |
SHA3-256: |
46fc601ee6873370518425a3aa035b99 |
User & Date: | drh 2020-06-14 17:05:41.832 |
Context
2020-06-18
| ||
13:32 | Draft changes for the 3.32.3 release. (check-in: 4cd53a483c user: drh tags: branch-3.32) | |
2020-06-14
| ||
17:05 | Fix typo in the cksumvfs document. (check-in: 46fc601ee6 user: drh tags: branch-3.32) | |
2020-06-13
| ||
17:39 | Fix typo on the prosupport page. (check-in: 50f0077137 user: drh tags: branch-3.32) | |
Changes
Changes to pages/cksumvfs.in.
︙ | ︙ | |||
50 51 52 53 54 55 56 | [sqlite3_load_extension()] API and shutdown the dummy database connection. All subsequent database connections that are opened will include this extension. For example: <codeblock> sqlite3 *db; sqlite3_open(":memory:", &db); | | | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | [sqlite3_load_extension()] API and shutdown the dummy database connection. All subsequent database connections that are opened will include this extension. For example: <codeblock> sqlite3 *db; sqlite3_open(":memory:", &db); sqlite3_load_extension(db, "./cksumvfs"); sqlite3_close(db); </codeblock> <p>If this extension is compiled with -DSQLITE_CKSUMVFS_STATIC and statically linked against the application, initialize it using a single API call as follows: |
︙ | ︙ |