Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | file format change (CVS 121) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4110936f112092b3bbc134f0717b899a |
User & Date: | drh 2000-08-02 12:37:18.000 |
Context
2000-08-02
| ||
13:47 | file format change (CVS 122) (check-in: b7b9023794 user: drh tags: trunk) | |
12:37 | file format change (CVS 121) (check-in: 4110936f11 user: drh tags: trunk) | |
12:26 | file format change (CVS 120) (check-in: 67f8af377c user: drh tags: trunk) | |
Changes
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.24 2000/08/02 12:37:18 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine Built Atop GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine Built Atop <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a></h1> <p align=center>} |
︙ | ︙ | |||
37 38 39 40 41 42 43 | <blockquote><pre> echo .dump | old-sqlite old-db | sqlite db </pre></blockquote> <p>This file format change was made to work around a potential inefficiency in GDBM that comes up when large indices are created | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <blockquote><pre> echo .dump | old-sqlite old-db | sqlite db </pre></blockquote> <p>This file format change was made to work around a potential inefficiency in GDBM that comes up when large indices are created on tables where many entries in the table have the same index key.</p> <h2>Features</h2> <p><ul> <li>Implements most of SQL92.</li> <li>A database is just a directory of GDBM files.</li> <li>Unlimited length records.</li> |
︙ | ︙ |