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