blob: fa52187e88beef1b8a8212019bd0ba4f7777c7ff [file] [log] [blame]
drhdce2cbe2000-05-31 02:27:49 +00001#
2# Run this script to generated a changes.html output file
3#
4puts {<html>
5<head>
6 <title>SQLite Change Log</title>
7</head>
8<body bgcolor="white">
9<h1 align="center">Recent Changes To SQLite</h1>
10
11<DL>
12}
13
14
15proc chng {date desc} {
16 puts "<DT><B>$date</B></DT>"
17 puts "<DD><P><UL>$desc</UL></P></DD>"
18}
19
20chng {2000 May 30} {
21<li>Added the <b>LIKE</b> operator.</li>
22<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
23but it uses Unix shell globbing wildcards instead of the '%'
24and '_' wildcards of SQL.</li>
25<li>Added the <B>COPY</b> command patterned after
26<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
27can now read the output of the <b>pg_dump</b> database dump utility
28of PostgreSQL.</li>
29<li>Added a <B>VACUUM</B> command that that calls the
30<b>gdbm_reorganize()</b> function on the underlying database
31files.</li>
32<li>And many, many bug fixes...</li>
33}
34
35chng {2000 May 29} {
36<li>Initial Public Release of Alpha code</li>
37}
38
39puts {
40</DL>
41<p><hr /></p>
42<p><a href="index.html"><img src="/goback.jpg" border=0 />
43Back to the SQLite Home Page</a>
44</p>
45
46</body></html>}