blob: 4d48e4f23000ecd4612c5cbd0a0382256bdbf493 [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
drhbed86902000-06-02 13:27:59 +000020chng {2000 June 2} {
21<li>All database files to be modified by an UPDATE, INSERT or DELETE are
22now locked before any changes are made to any files.
23This makes it safe (I think) to access
24the same database simultaneously from multiple processes.</li>
25<li>The code appears stable so we are now calling it "beta".</li>
26}
27
28chng {2000 June 1} {
29<li>Better support for file locking so that two or more processes
30(or threads)
31can access the same database simultaneously. More work needed in
32this area, though.</li>
33}
34
drh7203e282000-05-31 15:35:42 +000035chng {2000 May 31} {
drhbf66fff2000-05-31 15:43:25 +000036<li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>)
drhcce7d172000-05-31 15:34:51 +000037to the SELECT statement.</li>
drh56d48ad2000-05-31 21:06:30 +000038<li>Added support for <B>SELECT DISTINCT ...</B></li>
drhcce7d172000-05-31 15:34:51 +000039}
40
drhdce2cbe2000-05-31 02:27:49 +000041chng {2000 May 30} {
42<li>Added the <b>LIKE</b> operator.</li>
43<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
44but it uses Unix shell globbing wildcards instead of the '%'
45and '_' wildcards of SQL.</li>
46<li>Added the <B>COPY</b> command patterned after
47<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
48can now read the output of the <b>pg_dump</b> database dump utility
49of PostgreSQL.</li>
50<li>Added a <B>VACUUM</B> command that that calls the
51<b>gdbm_reorganize()</b> function on the underlying database
52files.</li>
53<li>And many, many bug fixes...</li>
54}
55
56chng {2000 May 29} {
57<li>Initial Public Release of Alpha code</li>
58}
59
60puts {
61</DL>
62<p><hr /></p>
63<p><a href="index.html"><img src="/goback.jpg" border=0 />
64Back to the SQLite Home Page</a>
65</p>
66
67</body></html>}