Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | spelling error (CVS 124) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
577421e5d370e220b5f228f4c711d49c |
User & Date: | drh 2000-08-03 15:13:30.000 |
Context
2000-08-04
| ||
13:49 | :-) (CVS 125) (check-in: ab9c533a3a user: drh tags: trunk) | |
2000-08-03
| ||
15:13 | spelling error (CVS 124) (check-in: 577421e5d3 user: drh tags: trunk) | |
15:09 | bug fix (CVS 123) (check-in: 4dabf5e4e6 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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.25 2000/08/03 15:13:30 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>} puts "This page was last modified on [lrange $rcsid 3 4] GMT<br>" puts "The SQLite source code was last modifed on [exec cat last_change] GMT" puts {</p>} puts {<h2>Introduction</h2> <p>SQLite is an SQL database engine built on top of the <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM library</a>. SQLite includes a standalone command-line access program (<a href="sqlite.html">sqlite</a>) and a C library (<a href="c_interface.html">libsqlite.a</a>) that can be linked with a C/C++ program to provide SQL database access without a separate RDBMS.</p> <h2>Important News Flash!</h2> <p> The SQLite file format was changed in an incompatible way on Aug 2, 2000. If you are updated the library and have databases built using the old version of the library, you should save your old databases into an ASCII file then reimport those database using the new library. For example, if you change the name of the old <b>sqlite</b> utility to "old-sqlite" and change the name of the old database directory to "old-db", then you can reconstruct the database as follows:</p> <blockquote><pre> echo .dump | old-sqlite old-db | sqlite db |
︙ | ︙ |