blob: d5c64bba2292b38c95e34429d79b66f74546c495 [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
drhdcc7c742000-06-09 03:51:26 +000020chng {2000 June 8} {
21<li>Added lots of new test cases</li>
22<li>Fix a few bugs discovered while adding test cases</li>
23<li>Begin adding lots of new documentation</li>
24}
25
drh49c87802000-06-06 18:24:42 +000026chng {2000 June 6} {
drh37f0b252000-06-09 03:52:04 +000027<li>Added compound select operators: <B>UNION</b>, <b>UNION ALL</B>,
drhf5005772000-06-06 22:19:00 +000028<b>INTERSECT</b>, and <b>EXCEPT</b></li>
drh49c87802000-06-06 18:24:42 +000029<li>Added support for using <b>(SELECT ...)</b> within expressions</li>
30<li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li>
31<li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li>
32<li>NULL values are now reported ot the callback as a NULL pointer
33 rather than an empty string.</li>
34}
35
drh32aa77e2000-06-03 19:28:48 +000036chng {2000 June 3} {
37<li>Added support for default values on columns of a table.</li>
38<li>Improved test coverage. Fixed a few obscure bugs found by the
39improved tests.</li>
40}
41
drhbed86902000-06-02 13:27:59 +000042chng {2000 June 2} {
43<li>All database files to be modified by an UPDATE, INSERT or DELETE are
44now locked before any changes are made to any files.
45This makes it safe (I think) to access
46the same database simultaneously from multiple processes.</li>
47<li>The code appears stable so we are now calling it "beta".</li>
48}
49
50chng {2000 June 1} {
51<li>Better support for file locking so that two or more processes
52(or threads)
53can access the same database simultaneously. More work needed in
54this area, though.</li>
55}
56
drh7203e282000-05-31 15:35:42 +000057chng {2000 May 31} {
drhbf66fff2000-05-31 15:43:25 +000058<li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>)
drhcce7d172000-05-31 15:34:51 +000059to the SELECT statement.</li>
drh56d48ad2000-05-31 21:06:30 +000060<li>Added support for <B>SELECT DISTINCT ...</B></li>
drhcce7d172000-05-31 15:34:51 +000061}
62
drhdce2cbe2000-05-31 02:27:49 +000063chng {2000 May 30} {
64<li>Added the <b>LIKE</b> operator.</li>
65<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
66but it uses Unix shell globbing wildcards instead of the '%'
67and '_' wildcards of SQL.</li>
68<li>Added the <B>COPY</b> command patterned after
69<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
70can now read the output of the <b>pg_dump</b> database dump utility
71of PostgreSQL.</li>
72<li>Added a <B>VACUUM</B> command that that calls the
73<b>gdbm_reorganize()</b> function on the underlying database
74files.</li>
75<li>And many, many bug fixes...</li>
76}
77
78chng {2000 May 29} {
79<li>Initial Public Release of Alpha code</li>
80}
81
82puts {
83</DL>
84<p><hr /></p>
85<p><a href="index.html"><img src="/goback.jpg" border=0 />
86Back to the SQLite Home Page</a>
87</p>
88
89</body></html>}