Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update release notes; fix some typos. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9cd115e7d24ecaffd02c972f27354224 |
User & Date: | shaneh 2010-12-07 20:07:58.000 |
Context
2010-12-08
| ||
12:58 | Add a description of the file naming conventions to the download page. (check-in: 5610cee39b user: drh tags: trunk) | |
2010-12-07
| ||
20:07 | Update release notes; fix some typos. (check-in: 9cd115e7d2 user: shaneh tags: trunk) | |
19:32 | Fix a typo in the News page. (check-in: 031858612b user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
50 51 52 53 54 55 56 | <li> [sqlite3_vfs | VFSes] that do not support shared memory are allowed to access [WAL] databases if [PRAGMA locking_mode] is set to EXCLUSIVE. <li> Enhancements to [EXPLAIN QUERY PLAN]. <li> Added the [sqlite3_stmt_readonly()] interface. <li> Added [PRAGMA checkpoint_fullfsync]. <li> Added the [SQLITE_FCNTL_FILE_POINTER] option to [sqlite3_file_control()]. | | > > > > > > | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <li> [sqlite3_vfs | VFSes] that do not support shared memory are allowed to access [WAL] databases if [PRAGMA locking_mode] is set to EXCLUSIVE. <li> Enhancements to [EXPLAIN QUERY PLAN]. <li> Added the [sqlite3_stmt_readonly()] interface. <li> Added [PRAGMA checkpoint_fullfsync]. <li> Added the [SQLITE_FCNTL_FILE_POINTER] option to [sqlite3_file_control()]. <li> Added support for [FTS4] and enhancements to the FTS [matchinfo()] function. <li> Added the test_superlock.c module which provides example code for obtaining an exclusive lock to a rollback or WAL database. <li> Added the test_multiplex.c module which provides an example VFS that provides multiplexing (sharding) of a DB, splitting it over multiple files of fixed size. <li> A [http://www.sqlite.org/src/info/80ba201079 | very obscure bug] associated with the [or optimization] was fixed. } chng {2010 October 08 (3.7.3)} { <li> Added the [sqlite3_create_function_v2()] interface that includes a destructor callback. |
︙ | ︙ | |||
895 896 897 898 899 900 901 | <li>Fixed a bug in the "copy" method of the TCL interface.</li> <li>Bug fixes in fts1 and fts2 modules.</li> } chng {2007 January 27 (3.3.12)} { <li>Fix another bug in the IS NULL optimization that was added in version 3.3.9.</li> | | | 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 | <li>Fixed a bug in the "copy" method of the TCL interface.</li> <li>Bug fixes in fts1 and fts2 modules.</li> } chng {2007 January 27 (3.3.12)} { <li>Fix another bug in the IS NULL optimization that was added in version 3.3.9.</li> <li>Fix an assertion fault that occurred on deeply nested views.</li> <li>Limit the amount of output that <a href="pragma.html#pragma_integrity_check">PRAGMA integrity_check</a> generates.</li> <li>Minor syntactic changes to support a wider variety of compilers.</li> } chng {2007 January 22 (3.3.11)} { |
︙ | ︙ | |||
1447 1448 1449 1450 1451 1452 1453 | <li>Improved accuracy of floating-point conversions using "long double".</li> <li>Bug fixes in the experimental date/time functions.</li> } chng {2004 January 5 (2.8.9)} { <li>Fix a 32-bit integer overflow problem that could result in corrupt indices in a database if large negative numbers (less than -2147483648) | | | 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 | <li>Improved accuracy of floating-point conversions using "long double".</li> <li>Bug fixes in the experimental date/time functions.</li> } chng {2004 January 5 (2.8.9)} { <li>Fix a 32-bit integer overflow problem that could result in corrupt indices in a database if large negative numbers (less than -2147483648) were inserted into an indexed numeric column.</li> <li>Fix a locking problem on multi-threaded Linux implementations.</li> <li>Always use "." instead of "," as the decimal point even if the locale requests ",".</li> <li>Added UTC to localtime conversions to the experimental date/time functions.</li> <li>Bug fixes to date/time functions.</li> } |
︙ | ︙ | |||
2458 2459 2460 2461 2462 2463 2464 | <li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B> but it uses Unix shell globbing wildcards instead of the '%' and '_' wildcards of SQL.</li> <li>Added the <B>COPY</b> command patterned after [http://www.postgresql.org/ | PostgreSQL] so that SQLite can now read the output of the <b>pg_dump</b> database dump utility of PostgreSQL.</li> | | | 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 | <li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B> but it uses Unix shell globbing wildcards instead of the '%' and '_' wildcards of SQL.</li> <li>Added the <B>COPY</b> command patterned after [http://www.postgresql.org/ | PostgreSQL] so that SQLite can now read the output of the <b>pg_dump</b> database dump utility of PostgreSQL.</li> <li>Added a <B>VACUUM</B> command that calls the <b>gdbm_reorganize()</b> function on the underlying database files.</li> <li>And many, many bug fixes...</li> } chng {2000 May 29} { <li>Initial Public Release of Alpha code</li> } </tcl> </dl> |