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 | 61fc2c6 | 2000-06-12 12:29:25 +0000 | [diff] [blame^] | 20 | chng {2000 June 12} { |
drh | 6de4f4c | 2000-06-12 12:20:48 +0000 | [diff] [blame] | 21 | <li>Added a <b>fcnt()</b> function which is designed to help write better. |
| 22 | test scripts. This function is not useful for anything other than |
| 23 | testing and debugging, as far as I know.</li> |
drh | 61fc2c6 | 2000-06-12 12:29:25 +0000 | [diff] [blame^] | 24 | <li>Added a few more tests that take advantage of the new fcnt() function. |
| 25 | The new tests did not uncover any new problems.</li> |
drh | 6de4f4c | 2000-06-12 12:20:48 +0000 | [diff] [blame] | 26 | } |
| 27 | |
drh | dcc7c74 | 2000-06-09 03:51:26 +0000 | [diff] [blame] | 28 | chng {2000 June 8} { |
| 29 | <li>Added lots of new test cases</li> |
| 30 | <li>Fix a few bugs discovered while adding test cases</li> |
| 31 | <li>Begin adding lots of new documentation</li> |
| 32 | } |
| 33 | |
drh | 49c8780 | 2000-06-06 18:24:42 +0000 | [diff] [blame] | 34 | chng {2000 June 6} { |
drh | 37f0b25 | 2000-06-09 03:52:04 +0000 | [diff] [blame] | 35 | <li>Added compound select operators: <B>UNION</b>, <b>UNION ALL</B>, |
drh | f500577 | 2000-06-06 22:19:00 +0000 | [diff] [blame] | 36 | <b>INTERSECT</b>, and <b>EXCEPT</b></li> |
drh | 49c8780 | 2000-06-06 18:24:42 +0000 | [diff] [blame] | 37 | <li>Added support for using <b>(SELECT ...)</b> within expressions</li> |
| 38 | <li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li> |
| 39 | <li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li> |
| 40 | <li>NULL values are now reported ot the callback as a NULL pointer |
| 41 | rather than an empty string.</li> |
| 42 | } |
| 43 | |
drh | 32aa77e | 2000-06-03 19:28:48 +0000 | [diff] [blame] | 44 | chng {2000 June 3} { |
| 45 | <li>Added support for default values on columns of a table.</li> |
| 46 | <li>Improved test coverage. Fixed a few obscure bugs found by the |
| 47 | improved tests.</li> |
| 48 | } |
| 49 | |
drh | bed8690 | 2000-06-02 13:27:59 +0000 | [diff] [blame] | 50 | chng {2000 June 2} { |
| 51 | <li>All database files to be modified by an UPDATE, INSERT or DELETE are |
| 52 | now locked before any changes are made to any files. |
| 53 | This makes it safe (I think) to access |
| 54 | the same database simultaneously from multiple processes.</li> |
| 55 | <li>The code appears stable so we are now calling it "beta".</li> |
| 56 | } |
| 57 | |
| 58 | chng {2000 June 1} { |
| 59 | <li>Better support for file locking so that two or more processes |
| 60 | (or threads) |
| 61 | can access the same database simultaneously. More work needed in |
| 62 | this area, though.</li> |
| 63 | } |
| 64 | |
drh | 7203e28 | 2000-05-31 15:35:42 +0000 | [diff] [blame] | 65 | chng {2000 May 31} { |
drh | bf66fff | 2000-05-31 15:43:25 +0000 | [diff] [blame] | 66 | <li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>) |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 67 | to the SELECT statement.</li> |
drh | 56d48ad | 2000-05-31 21:06:30 +0000 | [diff] [blame] | 68 | <li>Added support for <B>SELECT DISTINCT ...</B></li> |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 69 | } |
| 70 | |
drh | dce2cbe | 2000-05-31 02:27:49 +0000 | [diff] [blame] | 71 | chng {2000 May 30} { |
| 72 | <li>Added the <b>LIKE</b> operator.</li> |
| 73 | <li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B> |
| 74 | but it uses Unix shell globbing wildcards instead of the '%' |
| 75 | and '_' wildcards of SQL.</li> |
| 76 | <li>Added the <B>COPY</b> command patterned after |
| 77 | <a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite |
| 78 | can now read the output of the <b>pg_dump</b> database dump utility |
| 79 | of PostgreSQL.</li> |
| 80 | <li>Added a <B>VACUUM</B> command that that calls the |
| 81 | <b>gdbm_reorganize()</b> function on the underlying database |
| 82 | files.</li> |
| 83 | <li>And many, many bug fixes...</li> |
| 84 | } |
| 85 | |
| 86 | chng {2000 May 29} { |
| 87 | <li>Initial Public Release of Alpha code</li> |
| 88 | } |
| 89 | |
| 90 | puts { |
| 91 | </DL> |
| 92 | <p><hr /></p> |
| 93 | <p><a href="index.html"><img src="/goback.jpg" border=0 /> |
| 94 | Back to the SQLite Home Page</a> |
| 95 | </p> |
| 96 | |
| 97 | </body></html>} |