Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Web site changes prior to release 2.0-Alpha-2. (CVS 259) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
13afb22409b3b58d4c4b97a9fac22c96 |
User & Date: | drh 2001-09-20 12:32:53.000 |
Context
2001-09-22
| ||
18:12 | Put in a generic hash table system in place of the various ad-hoc hash table scattered everywhere. Except, the page hash table in the pager is unchanged. (CVS 260) (check-in: 9114420dd0 user: drh tags: trunk) | |
2001-09-20
| ||
12:32 | Web site changes prior to release 2.0-Alpha-2. (CVS 259) (check-in: 13afb22409 user: drh tags: trunk) | |
01:44 | 2.0-Alpha-2 release (CVS 1724) (check-in: 548c55e849 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
13 14 15 16 17 18 19 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2001 Sep 20 (2.0-alpha-2)} { <li>Initial release of version 2.0. The idea of renaming the library to "SQLus" was abandoned in favor of keeping the "SQLite" name and bumping the major version number.</li> <li>The pager and btree subsystems added back. They are now the only available backend.</li> <li>The Dbbe abstraction and the GDBM and memory drivers were removed.</li> <li>Copyright on all code was disclaimed. The library is now in the |
︙ | ︙ |
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.40 2001/09/20 12:32:53 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine In A C Library</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine In A C Library</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] GMT<br>" |
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | <p><ul> <li>Implements a large subset of SQL92.</li> <li>A complete SQL database (with multiple tables and indices) is stored in a single disk file.</li> <li>Atomic commit and rollback protect data integrity.</li> <li>Small memory footprint: about 12000 lines of C code.</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 TCL interface to the library is included.</li> <li>A TCL-based test suite provides near 100% code coverage.</li> <li>Self-contained: no external dependencies.</li> <li>Built and tested under Linux and Win2K.</li> | > | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <p><ul> <li>Implements a large subset of SQL92.</li> <li>A complete SQL database (with multiple tables and indices) is stored in a single disk file.</li> <li>Atomic commit and rollback protect data integrity.</li> <li>Small memory footprint: about 12000 lines of C code.</li> <li>Much faster than version 1.0!</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 TCL interface to the library is included.</li> <li>A TCL-based test suite provides near 100% code coverage.</li> <li>Self-contained: no external dependencies.</li> <li>Built and tested under Linux and Win2K.</li> <li>Sources are uncopyrighted. Use for any purpose.</li> </ul> </p> } puts {<h2>Download</h2>} puts {<table align="right"hspace="10"> |
︙ | ︙ |