Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Changes to the website for version 3.7.3. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c800d719f46c34af9d6f8af1878bc275 |
User & Date: | drh 2010-10-08 02:37:20.000 |
Context
2010-10-08
| ||
16:09 | Changes to lang_createtable.html. (check-in: dcfeca529f user: dan tags: trunk) | |
02:37 | Changes to the website for version 3.7.3. (check-in: c800d719f4 user: drh tags: trunk) | |
2010-10-06
| ||
13:47 | Updates to the file format documentation. (check-in: 8f5cfd48d2 user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
38 39 40 41 42 43 44 | http://www.sqlite.org/src/timeline</a>.</p> } hd_close_aux hd_enable_main 1 } } | | | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | http://www.sqlite.org/src/timeline</a>.</p> } hd_close_aux hd_enable_main 1 } } chng {2010 October 08 (3.7.3)} { <li> Added the [sqlite3_create_function_v2()] interface that includes a destructor callback. <li> Added support for [custom r-tree queries] using application-supplied callback routines to define the boundary of the query region. <li> The default page cache strives more diligently to avoid using memory beyond what is allocated to it by [SQLITE_CONFIG_PAGECACHE]. Or if using page cache is allocating from the heap, it strives to avoid going over the [sqlite3_soft_heap_limit64()], even if [SQLITE_ENABLE_MEMORY_MANAGEMENT] is not set. <li> Added the [sqlite3_soft_heap_limit64()] interface as a replacement for [sqlite3_soft_heap_limit()]. <li> The [ANALYZE] command now gathers statistics on tables even if they have no indices. <li> Tweaks to the query planner to help it do a better job of finding the most efficient query plan for each query. <li> Enhanced the internal text-to-numeric conversion routines so that they work with UTF8 or UTF16, thereby avoiding some UTF16-to-UTF8 text conversions. <li> Fix a problem that was causing excess memory usage with large [WAL] transactions in win32 systems. <li> The interface between the VDBE and B-Tree layer is enhanced such that the VDBE provides hints to the B-Tree layer letting the B-Tree layer know when it is safe to use hashing instead of B-Trees for transient tables. <li> Miscellaneous documentation enhancements. } chng {2010 August 24 (3.7.2)} { <li> Fix an <a href="http://www.sqlite.org/src/info/5e10420e8d"> old and very obscure bug</a> that can lead to corruption of the |
︙ | ︙ |
Changes to pages/index.in.
︙ | ︙ | |||
85 86 87 88 89 90 91 | <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> <td valign="top"> <h3>Current Status</h3> <p><ul> <li><a href="releaselog/3_7_3.html">Version 3.7.3</a> of SQLite is recommended for all new development. | > | | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> <td valign="top"> <h3>Current Status</h3> <p><ul> <li><a href="releaselog/3_7_3.html">Version 3.7.3</a> of SQLite is recommended for all new development. Upgrading from version 3.7.2 is optional. Upgrading from all other SQLite versions is recommended.</li> </ul></p> <h3>Common Links</h3> <p><ul> <li> <a href="features.html">Features</a> </li> <li> <a href="faq.html">Frequently Asked Questions</a> </li> |
︙ | ︙ |
Changes to pages/news.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<p>$txt</p>" hd_puts "<hr width=\"50%\">" } newsitem {2010-August-24} {Version 3.7.2} { SQLite [version 3.7.2] fixes a long-standing bug that can cause the database [free-page list] to go corrupt if [incremental_vacuum] is used multiple times to partially reduce the size of a database file that contains many hundreds of unused database pages. The original bug reports together with links | > > > > > > > > > > > > > > > > > > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<p>$txt</p>" hd_puts "<hr width=\"50%\">" } newsitem {2010-October-08} {Version 3.7.3} { SQLite [version 3.7.3] is a regularly scheduled bi-monthly maintenance release of SQLite. Upgrading from [version 3.7.2] is optional. Upgrading from all other releases is recommended. This release adds two new interfaces (really just variations on existing interfaces). The [sqlite3_create_function_v2()] interface adds a destructor for the application-data pointer. The new [sqlite3_soft_heap_limit64()] interface allows the soft heap limit to be set to a value greater than 2<sup>31</sup>. The [RTREE] extension has been enhanced with the ability to have an [custom r-tree queries | application-defined query region]. This might be used, for example, to locate all objects within the field of view of a camera. The 3.7.3 release also includes some performance enhancements, including query planner improvements, documentation updates, and fixes to some very obscure bugs. } newsitem {2010-August-24} {Version 3.7.2} { SQLite [version 3.7.2] fixes a long-standing bug that can cause the database [free-page list] to go corrupt if [incremental_vacuum] is used multiple times to partially reduce the size of a database file that contains many hundreds of unused database pages. The original bug reports together with links |
︙ | ︙ |