Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 64) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a2f4dcab299aceeba3afc223f424cd1 |
User & Date: | drh 2000-06-06 22:19:01.000 |
Context
2000-06-07
| ||
00:12 | :-) (CVS 65) (check-in: 80ee166ed1 user: drh tags: trunk) | |
2000-06-06
| ||
22:19 | :-) (CVS 64) (check-in: 3a2f4dcab2 user: drh tags: trunk) | |
22:13 | :-) (CVS 63) (check-in: 65d2100d33 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 June 6} { <li>Added support for using <b>(SELECT ...)</b> within expressions</li> <li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li> <li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li> <li>NULL values are now reported ot the callback as a NULL pointer rather than an empty string.</li> } | > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 June 6} { <li>Added outer join operators: <B>UNION</b>, <b>UNION ALL</B>, <b>INTERSECT</b>, and <b>EXCEPT</b></li> <li>Added support for using <b>(SELECT ...)</b> within expressions</li> <li>Added support for <b>IN</b> and <b>BETWEEN</b> operators</li> <li>Added support for <b>GROUP BY</b> and <b>HAVING</b></li> <li>NULL values are now reported ot the callback as a NULL pointer rather than an empty string.</li> } |
︙ | ︙ |
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.14 2000/06/06 22:19:02 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Built Atop GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Built Upon <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a></h1> <p align=center>} |
︙ | ︙ | |||
58 59 60 61 62 63 64 | <a href="changes.html">here</a>.</p> <p>SQLite now implements most of the SQL language. The following are the known limitations:</p> <p> <ul> | < < | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <a href="changes.html">here</a>.</p> <p>SQLite now implements most of the SQL language. The following are the known limitations:</p> <p> <ul> <li>Constraints are parsed but are not enforced</li> <li>There is no support for transactions or rollback</li> </ul> </p> <H2>Status</h2> <p>New features are still being added to the SQLite code base. Nevertheless, the code appears to be stable and relatively |
︙ | ︙ |