From: drh Date: Fri, 18 Aug 2000 09:58:51 +0000 (+0000) Subject: :-) (CVS 135) X-Git-Tag: version-3.6.10~5959 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea1fea5a507db59ffb2ed3f4d03d130a8e687a54;p=thirdparty%2Fsqlite.git :-) (CVS 135) FossilOrigin-Name: 0a0576e2f9e5404dff68683ef6fdf04d3a350b1a --- diff --git a/manifest b/manifest index 4ffa207ae5..dd60889c88 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C configure\sscript\sbug\s(CVS\s134) -D 2000-08-18T09:34:19 +C :-)\s(CVS\s135) +D 2000-08-18T09:58:52 F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4 F Makefile.in 8a4cc1bdcbb870f76d0c769136cf973af07586a4 F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958 @@ -61,16 +61,16 @@ F www/arch.fig 4e26e9dca3c49724fc8f554c695ddea9f2413156 F www/arch.png c4d908b79065a72e7dcf19317f36d1324c550e87 F www/arch.tcl 4f6a9afecc099a27bba17b4f8cc9561abc15dc40 F www/c_interface.tcl 29593cf77025bab137b7ba64b9459eb5eb6b4873 -F www/changes.tcl 30abd6cf1bc7778977d063fb2e4832889eea4fdb +F www/changes.tcl e9598af4e350e20e8dffa56e4b6d43f916daf3ef F www/crosscompile.tcl 19734ce7f18b16ff2ed8479412abf8aca56e1dcc F www/fileformat.tcl cfb7fba80b7275555281ba2f256c00734bcdd1c9 -F www/index.tcl 6dae7e07d110ce06c327223365dc1b475b4fb6ee +F www/index.tcl 2f5cc070b8fa8c3fc2f71bba4e6b7877d528fbde F www/lang.tcl 9192e114b19987e630a41e879585b87006eb84a1 F www/mingw.tcl fc5f4ba9d336b6e8c97347cc6496d6162461ef60 F www/opcode.tcl cb3a1abf8b7b9be9f3a228d097d6bf8b742c2b6f F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f F www/vdbe.tcl bcbfc33bcdd0ebad95eab31286adb9e1bc289520 -P c773a449b1f152a83c93a26e169f60c4f30d50a2 -R 7a3dc9b0c03bfbc3516857927d0c691b +P 862b649204f27b4d5e8fa16b1140b945c17d0e14 +R daae31cc2fdf6b916266f6f1a822eb85 U drh -Z 460060d90f1cff0516fb261de138023f +Z fbfbef32e6bc6aee02bb7abd8e2ee29a diff --git a/manifest.uuid b/manifest.uuid index 2d63f7a320..fbce5815cc 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -862b649204f27b4d5e8fa16b1140b945c17d0e14 \ No newline at end of file +0a0576e2f9e5404dff68683ef6fdf04d3a350b1a \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index c1b5f71918..b96f105397 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -19,6 +19,7 @@ proc chng {date desc} { chng {2000 Aug 18 (Version 1.0.1)} {
  • Fix a bug in the configure script.
  • +
  • Minor revisions to the website.
  • } chng {2000 Aug 17 (Version 1.0)} { diff --git a/www/index.tcl b/www/index.tcl index 053311b9a9..2295a00087 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -1,12 +1,12 @@ # # Run this TCL script to generate HTML for the index.html file. # -set rcsid {$Id: index.tcl,v 1.27 2000/08/17 10:22:34 drh Exp $} +set rcsid {$Id: index.tcl,v 1.28 2000/08/18 09:58:52 drh Exp $} puts { -SQLite: An SQL Database Engine Built Atop GDBM +SQLite: An SQL Database Library Built Atop GDBM -

    SQLite: An SQL Database Engine Built Atop +

    SQLite: An SQL Database Library Built Atop GDBM

    } puts "This page was last modified on [lrange $rcsid 3 4] GMT
    " @@ -17,33 +17,17 @@ puts {

    } puts {

    Introduction

    -

    SQLite is an SQL database engine built on top of the -GDBM library. -SQLite includes a standalone command-line -access program (sqlite) -and a C library (libsqlite.a) -that can be linked -with a C/C++ program to provide SQL database access without -a separate RDBMS.

    +

    SQLite is an SQL database library +(libsqlite.a) that uses +GDBM +as its underlying file storage mechanism. +Programs that link the SQLite library can have SQL database +access without running a separate RDBMS process. +The distribution comes with a standalone command-line +access program (sqlite) that can +be used to administer an SQLite database and which serves as +an example of how to use the SQLite library.

    -

    Important News Flash!

    -

    -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 sqlite utility to "old-sqlite" and -change the name of the old database directory to "old-db", then -you can reconstruct the database as follows:

    - -
    -echo .dump | old-sqlite old-db | sqlite db
    -
    - -

    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.

    Features

    @@ -88,6 +72,25 @@ Among the SQL features that SQLite does not currently implement are:

    +

    Important News Flash!

    +

    +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 the +database using the new library. For example, if you change the +name of the old sqlite utility to "old-sqlite" and +change the name of the old database directory to "old-db", then +you can reconstruct the database as follows:

    + +
    +echo .dump | old-sqlite old-db | sqlite db
    +
    + +

    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.

    +

    Documentation

    The following documentation is currently available: