Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | ac94eb8835a06653934b3667fc70a66d627c8438 |
|---|---|
| Date: | 2012-08-29 18:17:00 |
| User: | drh |
| Comment: | Fix a few minor typos. |
Tags And Properties
- branch=trunk inherited from [b2e03e19ab]
- sym-trunk inherited from [b2e03e19ab]
Changes
Changes to pages/news.in
30 to simply remove the OS/2 code from the SQLite tree. If there are 30 to simply remove the OS/2 code from the SQLite tree. If there are 31 OS/2 projects out there that still need SQLite support, they can 31 OS/2 projects out there that still need SQLite support, they can 32 continue to maintain their own private [VFS] which can be linked to 32 continue to maintain their own private [VFS] which can be linked to 33 SQLite at start-time using the [sqlite3_vfs_register()] interface. 33 SQLite at start-time using the [sqlite3_vfs_register()] interface. 34 34 35 The [sqlite3_close_v2()] interface has been added. The sqlite3_close_v2() 35 The [sqlite3_close_v2()] interface has been added. The sqlite3_close_v2() 36 interface differs from sqlite3_close() in that it is designed to work 36 interface differs from sqlite3_close() in that it is designed to work 37 bettter for host language that use a garbage collector. With the older | 37 better for host language that use a garbage collector. With the older 38 sqlite3_close() interface, the associated [prepared statements] and 38 sqlite3_close() interface, the associated [prepared statements] and 39 [sqlite3_backup] objects must be destroyed before the database connection. 39 [sqlite3_backup] objects must be destroyed before the database connection. 40 With the newer sqlite3_close_v2() interface, the objects can be destroyed 40 With the newer sqlite3_close_v2() interface, the objects can be destroyed 41 in any order. 41 in any order. 42 42 43 This release also includes proformance improvements to the sort algorithm | 43 This release also includes preformance improvements to the sort algorithm 44 that is used to implement ORDER BY and CREATE INDEX. 44 that is used to implement ORDER BY and CREATE INDEX. 45 45 46 } 46 } 47 47 48 newsitem {2012-June-11} {Release 3.7.13} { 48 newsitem {2012-June-11} {Release 3.7.13} { 49 SQLite [version 3.7.13] adds support for WinRT and metro style 49 SQLite [version 3.7.13] adds support for WinRT and metro style 50 applications for Microsoft Windows 8. The 3.7.13 release is 50 applications for Microsoft Windows 8. The 3.7.13 release is
Changes to pages/sharedcache.in
244 databases if the unadorned name ":memory:" is used to open the database. 244 databases if the unadorned name ":memory:" is used to open the database. 245 Prior to version 3.7.13, shared cache was always 245 Prior to version 3.7.13, shared cache was always 246 disabled for in-memory databases regardless of the database name used, 246 disabled for in-memory databases regardless of the database name used, 247 current system shared cache setting, or query parameters or flags. 247 current system shared cache setting, or query parameters or flags. 248 </p> 248 </p> 249 249 250 <p> 250 <p> 251 Enabling shared-cache for an in-mmeory database allows two or more | 251 Enabling shared-cache for an in-memory database allows two or more 252 database connections in the same process to have access to the same 252 database connections in the same process to have access to the same 253 in-memory database. An in-memory database in shared cache is automatically 253 in-memory database. An in-memory database in shared cache is automatically 254 deleted and memory is reclaimed when the last connection to that database 254 deleted and memory is reclaimed when the last connection to that database 255 closes. 255 closes. 256 </p> 256 </p>