Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation updates prior to version 3.3.10. Among the changes is a fix for ticket #2148 (CVS 3584) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
686beffa6956654fc43a2e3f1ea2896b |
User & Date: | drh 2007-01-09 23:13:06.000 |
Context
2007-01-10
| ||
12:54 | Corrections to the documentation for sqlite3_busy_handler(). Ticket #2160. (CVS 3585) (check-in: 9614c0f99f user: drh tags: trunk) | |
2007-01-09
| ||
23:13 | Documentation updates prior to version 3.3.10. Among the changes is a fix for ticket #2148 (CVS 3584) (check-in: 686beffa69 user: drh tags: trunk) | |
17:18 | Fix the windows OS layer so that it returns detailed IOERR error codes. (CVS 3583) (check-in: 4b36de46c4 user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.3.10 |
Changes to www/changes.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | if {[regexp {\(([0-9.]+)\)} $date all vers]} { set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2007 January 4 (3.3.9)} { <li>Fix bugs in pager.c that could lead to database corruption if two processes both try to recover a hot journal at the same instant</li> <li>Added the <a href="capi3ref.html#sqlite3_prepare_v2">sqlite3_prepare_v2()</a> API.</li> <li>Fixed the ".dump" command in the command-line shell to show | > > > > > > > > > > > > > > > > > | | 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 49 50 51 52 53 54 55 56 57 58 | if {[regexp {\(([0-9.]+)\)} $date all vers]} { set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2007 January 9 (3.3.10)} { <li>Fix bugs in the implementation of the new <a href="capi3ref.html#sqlite3_prepare_v2">sqlite3_prepare_v2()</a> API that can lead to segfaults.</li> <li>Fix 1-second round-off errors in the <a href="http://www.sqlite.org/cvstrac/wiki?p=DateAndTimeFunctions"> strftime()</a> function</li> <li>Enhance the windows OS layer to provide detailed error codes</li> <li>Work around a win2k problem so that SQLite can use single-character database file names</li> <li>The <a href="pragma.html#pragma_user_version">user_version</a> and <a href="pragma.html#pragma_schema_version">schema_version</a> pragmas correctly set their column names in the result set</li> <li>Documentation updates</li> } chng {2007 January 4 (3.3.9)} { <li>Fix bugs in pager.c that could lead to database corruption if two processes both try to recover a hot journal at the same instant</li> <li>Added the <a href="capi3ref.html#sqlite3_prepare_v2">sqlite3_prepare_v2()</a> API.</li> <li>Fixed the ".dump" command in the command-line shell to show indices, triggers and views again.</li> <li>Change the table_info pragma so that it returns NULL for the default value if there is no default value</li> <li>Support for non-ASCII characters in win95 filenames</li> <li>Query optimizer enhancements: <ul> <li>Optimizer does a better job of using indices to satisfy ORDER BY clauses that sort on the integer primary key</li> |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2007-Jan-4} {Version 3.3.9} { Version 3.3.9 fixes bugs that can lead to database corruption under obsure and difficult to reproduce circumstances. See <a href="http://www.sqlite.org/cvstrac/wiki?p=DatabaseCorruption"> DatabaseCorruption</a> in the <a href="http://www.sqlite.org/cvstrac/wiki">wiki</a> for details. | > > > > > | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2007-Jan-9} {Version 3.3.10} { Version 3.3.10 fixes several bugs that were introduced by the release. Upgrading is recommended. } newsitem {2007-Jan-4} {Version 3.3.9} { Version 3.3.9 fixes bugs that can lead to database corruption under obsure and difficult to reproduce circumstances. See <a href="http://www.sqlite.org/cvstrac/wiki?p=DatabaseCorruption"> DatabaseCorruption</a> in the <a href="http://www.sqlite.org/cvstrac/wiki">wiki</a> for details. |
︙ | ︙ | |||
109 110 111 112 113 114 115 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 114 115 116 117 118 119 120 121 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.145 2007/01/09 23:13:06 drh Exp $} |