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 | 7203e28 | 2000-05-31 15:35:42 +0000 | [diff] [blame] | 20 | chng {2000 May 31} { |
drh | bf66fff | 2000-05-31 15:43:25 +0000 | [diff] [blame^] | 21 | <li>Added support for aggregate functions (Ex: <b>COUNT(*)</b>, <b>MIN(...)</b>) |
drh | cce7d17 | 2000-05-31 15:34:51 +0000 | [diff] [blame] | 22 | to the SELECT statement.</li> |
| 23 | } |
| 24 | |
drh | dce2cbe | 2000-05-31 02:27:49 +0000 | [diff] [blame] | 25 | chng {2000 May 30} { |
| 26 | <li>Added the <b>LIKE</b> operator.</li> |
| 27 | <li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B> |
| 28 | but it uses Unix shell globbing wildcards instead of the '%' |
| 29 | and '_' wildcards of SQL.</li> |
| 30 | <li>Added the <B>COPY</b> command patterned after |
| 31 | <a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite |
| 32 | can now read the output of the <b>pg_dump</b> database dump utility |
| 33 | of PostgreSQL.</li> |
| 34 | <li>Added a <B>VACUUM</B> command that that calls the |
| 35 | <b>gdbm_reorganize()</b> function on the underlying database |
| 36 | files.</li> |
| 37 | <li>And many, many bug fixes...</li> |
| 38 | } |
| 39 | |
| 40 | chng {2000 May 29} { |
| 41 | <li>Initial Public Release of Alpha code</li> |
| 42 | } |
| 43 | |
| 44 | puts { |
| 45 | </DL> |
| 46 | <p><hr /></p> |
| 47 | <p><a href="index.html"><img src="/goback.jpg" border=0 /> |
| 48 | Back to the SQLite Home Page</a> |
| 49 | </p> |
| 50 | |
| 51 | </body></html>} |