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