mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
:-) (CVS 20)
FossilOrigin-Name: 01d85b35e9c4ca5619ad21a4232a8f8bf9ec3538
This commit is contained in:
46
www/changes.tcl
Normal file
46
www/changes.tcl
Normal file
@ -0,0 +1,46 @@
|
||||
#
|
||||
# Run this script to generated a changes.html output file
|
||||
#
|
||||
puts {<html>
|
||||
<head>
|
||||
<title>SQLite Change Log</title>
|
||||
</head>
|
||||
<body bgcolor="white">
|
||||
<h1 align="center">Recent Changes To SQLite</h1>
|
||||
|
||||
<DL>
|
||||
}
|
||||
|
||||
|
||||
proc chng {date desc} {
|
||||
puts "<DT><B>$date</B></DT>"
|
||||
puts "<DD><P><UL>$desc</UL></P></DD>"
|
||||
}
|
||||
|
||||
chng {2000 May 30} {
|
||||
<li>Added the <b>LIKE</b> operator.</li>
|
||||
<li>Added a <b>GLOB</b> operator: similar to <B>LIKE</B>
|
||||
but it uses Unix shell globbing wildcards instead of the '%'
|
||||
and '_' wildcards of SQL.</li>
|
||||
<li>Added the <B>COPY</b> command patterned after
|
||||
<a href="http://www.postgresql.org/">PostgreSQL</a> so that SQLite
|
||||
can now read the output of the <b>pg_dump</b> database dump utility
|
||||
of PostgreSQL.</li>
|
||||
<li>Added a <B>VACUUM</B> command that that calls the
|
||||
<b>gdbm_reorganize()</b> function on the underlying database
|
||||
files.</li>
|
||||
<li>And many, many bug fixes...</li>
|
||||
}
|
||||
|
||||
chng {2000 May 29} {
|
||||
<li>Initial Public Release of Alpha code</li>
|
||||
}
|
||||
|
||||
puts {
|
||||
</DL>
|
||||
<p><hr /></p>
|
||||
<p><a href="index.html"><img src="/goback.jpg" border=0 />
|
||||
Back to the SQLite Home Page</a>
|
||||
</p>
|
||||
|
||||
</body></html>}
|
Reference in New Issue
Block a user