Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Increment the version number and update the documentation in preparation for the 2.8.5 release. (CVS 1061) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c2115335de4abc25cbc1664d718dc3a6 |
User & Date: | drh 2003-07-22 12:41:59.000 |
Context
2003-07-22
| ||
12:44 | Fix a typo in the index.html homepage. (CVS 1062) (check-in: 510761cf50 user: drh tags: trunk) | |
12:41 | Increment the version number and update the documentation in preparation for the 2.8.5 release. (CVS 1061) (check-in: c2115335de user: drh tags: trunk) | |
09:24 | Add experimental sqlite_reset() API (allows pre-compiled queries) (CVS 1060) (check-in: 1d2fcb0178 user: danielk1977 tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 2.8.5 |
Changes to www/changes.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2003 June 29 (2.8.4)} { <li>Enhanced the "PRAGMA integrity_check" command to verify indices.</li> <li>Added authorization hooks for the new ATTACH and DETACH commands.</li> <li>Many documentation updates</li> <li>Many minor bug fixes</li> } | > > > > > > > > > > > | 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 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2003 July 22 (2.8.5)} { <li>Make LIMIT work on a compound SELECT statement.</li> <li>LIMIT 0 now shows no rows. Use LIMIT -1 to see all rows.</li> <li>Correctly handle comparisons between an INTEGER PRIMARY KEY and a floating point number.</li> <li>Fix several important bugs in the new ATTACH and DETACH commands.</li> <li>Updated the <a href="nulls.html">NULL-handling document</a>.</li> <li>Allow NULL arguments in sqlite_compile() and sqlite_step().</li> <li>Many minor bug fixes</li> } chng {2003 June 29 (2.8.4)} { <li>Enhanced the "PRAGMA integrity_check" command to verify indices.</li> <li>Added authorization hooks for the new ATTACH and DETACH commands.</li> <li>Many documentation updates</li> <li>Many minor bug fixes</li> } |
︙ | ︙ |
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.76 2003/07/22 12:42:00 drh Exp $} puts {<html> <head><title>SQLite: An Embeddable SQL Database Engine</title></head> <body bgcolor=white> <h1 align=center>SQLite<br>An Embeddable SQL Database Engine</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
59 60 61 62 63 64 65 | <li>Small memory footprint: less than 25K lines of C code.</li> <li><a href="speed.html">Two times faster</a> than PostgreSQL and MySQL for many common operations.</li> <li>Very simple <a href="c_interface.html">C/C++ interface</a> requires the use of only three functions and one opaque structure.</li> <li><a href="tclsqlite.html">TCL bindings</a> included. | | > > | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | <li>Small memory footprint: less than 25K lines of C code.</li> <li><a href="speed.html">Two times faster</a> than PostgreSQL and MySQL for many common operations.</li> <li>Very simple <a href="c_interface.html">C/C++ interface</a> requires the use of only three functions and one opaque structure.</li> <li><a href="tclsqlite.html">TCL bindings</a> included. Bindings for many other languages <a href="http://cvs.hwaci.com/sqlite/wiki?p=SqliteWrappers> available separately.</a></li> <li>Simple, well-commented source code.</li> <li>Automated test suite provides near 100% code coverage.</li> <li>Self-contained: no external dependencies.</li> <li>Built and tested under Linux and Windows.</li> <li>Sources are in the public domain. Use for any purpose.</li> </ul> </p> |
︙ | ︙ |