blob: e1e1c86b2b0cc1cddeeedde0a47a70718760ecb9 [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
drh7203e282000-05-31 15:35:42 +000020chng {2000 May 31} {
drhbf66fff2000-05-31 15:43:25 +000021<li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>)
drhcce7d172000-05-31 15:34:51 +000022to the SELECT statement.</li>
23}
24
drhdce2cbe2000-05-31 02:27:49 +000025chng {2000 May 30} {
26<li>Added the <b>LIKE</b> operator.</li>
27<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
28but it uses Unix shell globbing wildcards instead of the '%'
29and '_' wildcards of SQL.</li>
30<li>Added the <B>COPY</b> command patterned after
31<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
32can now read the output of the <b>pg_dump</b> database dump utility
33of PostgreSQL.</li>
34<li>Added a <B>VACUUM</B> command that that calls the
35<b>gdbm_reorganize()</b> function on the underlying database
36files.</li>
37<li>And many, many bug fixes...</li>
38}
39
40chng {2000 May 29} {
41<li>Initial Public Release of Alpha code</li>
42}
43
44puts {
45</DL>
46<p><hr /></p>
47<p><a href="index.html"><img src="/goback.jpg" border=0 />
48Back to the SQLite Home Page</a>
49</p>
50
51</body></html>}