Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in sqlite3ota.h. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | ota-update |
Files: | files | file ages | folders |
SHA1: | 04087dec4c3db5f322eca289585525b7 |
User & Date: | dan 2015-03-05 13:43:21 |
Context
2015-03-05
| ||
14:07 | Add comments to sqlite3ota.h to make it clear that passing NULL in place of a parent VFS name to sqlite3ota_create_vfs() causes the new VFS to use the system default as its parent. check-in: 158c1a48 user: dan tags: ota-update | |
13:43 | Fix a typo in sqlite3ota.h. check-in: 04087dec user: dan tags: ota-update | |
2015-02-23
| ||
20:09 | Fix building with ENABLE_OTA and OMIT_LOAD_EXTENSION. check-in: d6d21ff5 user: dan tags: ota-update | |
Changes
Changes to ext/ota/sqlite3ota.h.
329 329 ** handle is opened. The OTA VFS should be installed so that the zipvfs 330 330 ** VFS uses the OTA VFS, which in turn uses any other VFS layers in use 331 331 ** (for example multiplexor) to access the file-system. For example, 332 332 ** to assemble an OTA enabled VFS stack that uses both zipvfs and 333 333 ** multiplexor (error checking omitted): 334 334 ** 335 335 ** // Create a VFS named "multiplexor" (not the default). 336 -** sqlite3_multiplex_initialize(zVfsName, 0); 336 +** sqlite3_multiplex_initialize("multiplexor", 0); 337 337 ** 338 338 ** // Create an ota VFS named "ota" that uses multiplexor. 339 339 ** sqlite3ota_create_vfs("ota", "multiplexor"); 340 340 ** 341 341 ** // Create a zipvfs VFS named "zipvfs" that uses ota. 342 342 ** zipvfs_create_vfs_v3("zipvfs", "ota", 0, xCompressorAlgorithmDetector); 343 343 **