blob: 95208815743ea32b58ba0a227a2a68e005ee136a [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
drh6206d502000-06-19 19:09:08 +000020chng {2000 June 19} {
drh7ed19902000-06-19 19:10:28 +000021<li>Column names in UPDATE statements were case sensitive.
22 This mistake has now been fixed.</li>
drh6206d502000-06-19 19:09:08 +000023}
24
drh00400772000-06-16 20:51:26 +000025chng {2000 June 16} {
26<li>Added the concatenate string operator (||)</li>
27}
28
drh61fc2c62000-06-12 12:29:25 +000029chng {2000 June 12} {
drhe91cd0c2000-06-12 12:36:36 +000030<li>Added the fcnt() function to the SQL interpreter. The fcnt() function
31 returns the number of database "Fetch" operations that have occurred.
32 This function is designed for use in test scripts to verify that
33 queries are efficient and appropriately optimized. Fcnt() has no other
34 useful purpose, as far as I know.</li>
35<li>Added a bunch more tests that take advantage of the new fcnt() function.
drh61fc2c62000-06-12 12:29:25 +000036 The new tests did not uncover any new problems.</li>
drh6de4f4c2000-06-12 12:20:48 +000037}
38
drhdcc7c742000-06-09 03:51:26 +000039chng {2000 June 8} {
40<li>Added lots of new test cases</li>
41<li>Fix a few bugs discovered while adding test cases</li>
42<li>Begin adding lots of new documentation</li>
43}
44
drh49c87802000-06-06 18:24:42 +000045chng {2000 June 6} {
drh37f0b252000-06-09 03:52:04 +000046<li>Added compound select operators: <B>UNION</b>, <b>UNION ALL</B>,
drhf5005772000-06-06 22:19:00 +000047<b>INTERSECT</b>, and <b>EXCEPT</b></li>
drh49c87802000-06-06 18:24:42 +000048<li>Added support for using <b>(SELECT ...)</b> within expressions</li>
49<li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li>
50<li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li>
51<li>NULL values are now reported ot the callback as a NULL pointer
52 rather than an empty string.</li>
53}
54
drh32aa77e2000-06-03 19:28:48 +000055chng {2000 June 3} {
56<li>Added support for default values on columns of a table.</li>
57<li>Improved test coverage. Fixed a few obscure bugs found by the
58improved tests.</li>
59}
60
drhbed86902000-06-02 13:27:59 +000061chng {2000 June 2} {
62<li>All database files to be modified by an UPDATE, INSERT or DELETE are
63now locked before any changes are made to any files.
64This makes it safe (I think) to access
65the same database simultaneously from multiple processes.</li>
66<li>The code appears stable so we are now calling it "beta".</li>
67}
68
69chng {2000 June 1} {
70<li>Better support for file locking so that two or more processes
71(or threads)
72can access the same database simultaneously. More work needed in
73this area, though.</li>
74}
75
drh7203e282000-05-31 15:35:42 +000076chng {2000 May 31} {
drhbf66fff2000-05-31 15:43:25 +000077<li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>)
drhcce7d172000-05-31 15:34:51 +000078to the SELECT statement.</li>
drh56d48ad2000-05-31 21:06:30 +000079<li>Added support for <B>SELECT DISTINCT ...</B></li>
drhcce7d172000-05-31 15:34:51 +000080}
81
drhdce2cbe2000-05-31 02:27:49 +000082chng {2000 May 30} {
83<li>Added the <b>LIKE</b> operator.</li>
84<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
85but it uses Unix shell globbing wildcards instead of the '%'
86and '_' wildcards of SQL.</li>
87<li>Added the <B>COPY</b> command patterned after
88<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
89can now read the output of the <b>pg_dump</b> database dump utility
90of PostgreSQL.</li>
91<li>Added a <B>VACUUM</B> command that that calls the
92<b>gdbm_reorganize()</b> function on the underlying database
93files.</li>
94<li>And many, many bug fixes...</li>
95}
96
97chng {2000 May 29} {
98<li>Initial Public Release of Alpha code</li>
99}
100
101puts {
102</DL>
103<p><hr /></p>
104<p><a href="index.html"><img src="/goback.jpg" border=0 />
105Back to the SQLite Home Page</a>
106</p>
107
108</body></html>}