drh | dce2cbe | 2000-05-31 02:27:49 +0000 | [diff] [blame] | 1 | # |
| 2 | # Run this script to generated a changes.html output file |
| 3 | # |
| 4 | puts {<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 | |
| 15 | proc chng {date desc} { |
| 16 | puts "<DT><B>$date</B></DT>" |
| 17 | puts "<DD><P><UL>$desc</UL></P></DD>" |
| 18 | } |
| 19 | |
drh | 49c8780 | 2000-06-06 18:24:42 +0000 | [diff] [blame^] | 20 | chng {2000 June 6} { |
| 21 | <li>Added support for using <b>(SELECT ...)</b> within expressions</li> |
| 22 | <li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li> |
| 23 | <li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li> |
| 24 | <li>NULL values are now reported ot the callback as a NULL pointer |
| 25 | rather than an empty string.</li> |
| 26 | } |
| 27 | |
drh | 32aa77e | 2000-06-03 19:28:48 +0000 | [diff] [blame] | 28 | chng {2000 June 3} { |
| 29 | <li>Added support for default values on columns of a table.</li> |
| 30 | <li>Improved test coverage. Fixed a few obscure bugs found by the |
| 31 | improved tests.</li> |
| 32 | } |
| 33 | |
drh | bed8690 | 2000-06-02 13:27:59 +0000 | [diff] [blame] | 34 | chng {2000 June 2} { |
| 35 | <li>All database files to be modified by an UPDATE, INSERT or DELETE are |
| 36 | now locked before any changes are made to any files. |
| 37 | This makes it safe (I think) to access |
| 38 | the same database simultaneously from multiple processes.</li> |
| 39 | <li>The code appears stable so we are now calling it "beta".</li> |
| 40 | } |
| 41 | |
| 42 | chng {2000 June 1} { |
| 43 | <li>Better support for file locking so that two or more processes |
| 44 | (or threads) |
| 45 | can access the same database simultaneously. More work needed in |
| 46 | this area, though.</li> |
| 47 | } |
| 48 | |
drh | 7203e28 | 2000-05-31 15:35:42 +0000 | [diff] [blame] | 49 | chng {2000 May 31} { |
drh | bf66fff | 2000-05-31 15:43:25 +0000 | [diff] [blame] | 50 | <li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>) |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 51 | to the SELECT statement.</li> |
drh | 56d48ad | 2000-05-31 21:06:30 +0000 | [diff] [blame] | 52 | <li>Added support for <B>SELECT DISTINCT ...</B></li> |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 53 | } |
| 54 | |
drh | dce2cbe | 2000-05-31 02:27:49 +0000 | [diff] [blame] | 55 | chng {2000 May 30} { |
| 56 | <li>Added the <b>LIKE</b> operator.</li> |
| 57 | <li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B> |
| 58 | but it uses Unix shell globbing wildcards instead of the '%' |
| 59 | and '_' wildcards of SQL.</li> |
| 60 | <li>Added the <B>COPY</b> command patterned after |
| 61 | <a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite |
| 62 | can now read the output of the <b>pg_dump</b> database dump utility |
| 63 | of PostgreSQL.</li> |
| 64 | <li>Added a <B>VACUUM</B> command that that calls the |
| 65 | <b>gdbm_reorganize()</b> function on the underlying database |
| 66 | files.</li> |
| 67 | <li>And many, many bug fixes...</li> |
| 68 | } |
| 69 | |
| 70 | chng {2000 May 29} { |
| 71 | <li>Initial Public Release of Alpha code</li> |
| 72 | } |
| 73 | |
| 74 | puts { |
| 75 | </DL> |
| 76 | <p><hr /></p> |
| 77 | <p><a href="index.html"><img src="/goback.jpg" border=0 /> |
| 78 | Back to the SQLite Home Page</a> |
| 79 | </p> |
| 80 | |
| 81 | </body></html>} |