Index: www/changes.tcl ================================================================== --- www/changes.tcl +++ www/changes.tcl @@ -10,12 +10,12 @@

This file provides a high-level summary of changes to SQLite. For more detail, refer the the checkin logs generated by CVS at - -http://cvs.hwaci.com/sqlite/timeline. + +http:/www.sqlite.org/cvstrac/timeline.

} @@ -22,10 +22,25 @@ proc chng {date desc} { puts "
$date
" puts "

" } + +chng {2003 August 21 (2.8.6)} { +
  • Moved the CVS repository to www.sqlite.org
  • +
  • Update the NULL-handling documentation.
  • +
  • Experimental date/time functions added.
  • +
  • Bug fix: correctly evaluate a view of a view without segfaulting.
  • +
  • Bug fix: prevent database corruption if you dropped a + trigger that had the same name as a table.
  • +
  • Bug fix: allow a VACUUM (without segfaulting) on an empty + database after setting the EMPTY_RESULT_CALLBACKS pragma.
  • +
  • Bug fix: if an integer value will not fit in a 32-bit int, store it in + a double instead.
  • +
  • Bug fix: Make sure the journal file directory entry is committed to disk + before writing the database file.
  • +} chng {2003 July 22 (2.8.5)} {
  • Make LIMIT work on a compound SELECT statement.
  • LIMIT 0 now shows no rows. Use LIMIT -1 to see all rows.
  • Correctly handle comparisons between an INTEGER PRIMARY KEY and Index: www/index.tcl ================================================================== --- www/index.tcl +++ www/index.tcl @@ -1,9 +1,9 @@ # # Run this TCL script to generate HTML for the index.html file. # -set rcsid {$Id: index.tcl,v 1.77 2003/07/22 12:44:54 drh Exp $} +set rcsid {$Id: index.tcl,v 1.78 2003/08/22 02:34:30 drh Exp $} puts { SQLite: An Embeddable SQL Database Engine

    SQLite
    An Embeddable SQL Database Engine

    @@ -34,12 +34,12 @@
    Quick Links:
    @@ -62,11 +62,11 @@
  • Very simple C/C++ interface requires the use of only three functions and one opaque structure.
  • TCL bindings included. Bindings for many other languages - + available separately.
  • Simple, well-commented source code.
  • Automated test suite provides near 100% code coverage.
  • Self-contained: no external dependencies.
  • Built and tested under Linux and Windows.
  • @@ -77,16 +77,16 @@ puts {

    Current Status

    A Change Summary is available on this website. You can also access a detailed -change history, -view open bugs, +change history, +view open bugs, or -report new bugs +report new bugs at the -CVS server.

    +CVS server.

    Complete source code and precompiled binaries for the latest release are available for download on this site. You can also obtain the latest changes by anonymous CVS access:

    @@ -136,11 +136,11 @@
     
  • A description of the database file format used by SQLite.
  • A speed comparison between SQLite, PostgreSQL, and MySQL.
  • User-written documentation is available on the - SQLite Wiki. Please + SQLite Wiki. Please contribute if you can.
  • The SQLite source code is 30% comment. These comments are @@ -212,12 +212,12 @@ (Perl, Python, Ruby, PHP, etc.) and for a list of programs currently using SQLite, visit the Wiki documentation at:

    - -http://cvs.hwaci.com/sqlite/wiki + +http://www.sqlite.org/cvstrac/wiki
    } puts { } Index: www/omitted.tcl ================================================================== --- www/omitted.tcl +++ www/omitted.tcl @@ -1,9 +1,9 @@ # # Run this script to generated a omitted.html output file # -set rcsid {$Id: omitted.tcl,v 1.4 2003/06/30 10:36:23 drh Exp $} +set rcsid {$Id: omitted.tcl,v 1.5 2003/08/22 02:34:30 drh Exp $} puts { SQL Features That SQLite Does Not Implement @@ -99,14 +99,14 @@

    If you find other SQL92 features that SQLite does not support, please add them to the Wiki page at - -http://cvs.hwaci.com/sqlite/wiki?p=Unsupported + +http://www.sqlite.org/cvstrac/wiki?p=Unsupported


    Back to the SQLite Home Page

    }