1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

:-) (CVS 135)

FossilOrigin-Name: 0a0576e2f9e5404dff68683ef6fdf04d3a350b1a
This commit is contained in:
drh
2000-08-18 09:58:51 +00:00
parent d317676578
commit ea1fea5a50
4 changed files with 41 additions and 37 deletions

View File

@@ -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

View File

@@ -1 +1 @@
862b649204f27b4d5e8fa16b1140b945c17d0e14
0a0576e2f9e5404dff68683ef6fdf04d3a350b1a

View File

@@ -19,6 +19,7 @@ proc chng {date desc} {
chng {2000 Aug 18 (Version 1.0.1)} {
<li>Fix a bug in the configure script.</li>
<li>Minor revisions to the website.</li>
}
chng {2000 Aug 17 (Version 1.0)} {

View File

@@ -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 {<html>
<head><title>SQLite: An SQL Database Engine Built Atop GDBM</title></head>
<head><title>SQLite: An SQL Database Library Built Atop GDBM</title></head>
<body bgcolor=white>
<h1 align=center>SQLite: An SQL Database Engine Built Atop
<h1 align=center>SQLite: An SQL Database Library 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>"
@@ -17,33 +17,17 @@ 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>
<p>SQLite is an SQL database library
(<a href="c_interface.html">libsqlite.a</a>) that uses
<a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a>
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 (<a href="sqlite.html">sqlite</a>) that can
be used to administer an SQLite database and which serves as
an example of how to use the SQLite library.</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
</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>
@@ -88,6 +72,25 @@ Among the SQL features that SQLite does not currently implement are:</p>
</ul>
</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 the
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
</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>Documentation</h2>
<p>The following documentation is currently available:</p>