Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 89) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8de283ded11351962523264584c60192 |
User & Date: | drh 2000-06-09 03:51:27.000 |
Context
2000-06-09
| ||
03:52 | :-) (CVS 90) (check-in: aba926bb33 user: drh tags: trunk) | |
03:51 | :-) (CVS 89) (check-in: 8de283ded1 user: drh tags: trunk) | |
03:47 | :-) (CVS 88) (check-in: 3252269e90 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | } 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> | > > > > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 June 8} { <li>Added lots of new test cases</li> <li>Fix a few bugs discovered while adding test cases</li> <li>Begin adding lots of new documentation</li> } 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> |
︙ | ︙ |
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.17 2000/06/09 03:51:27 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine Built Atop GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine Built Atop <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a></h1> <p align=center>} |
︙ | ︙ | |||
92 93 94 95 96 97 98 99 100 101 102 103 104 105 | <p><ul> <li>Information on the <a href="sqlite.html">sqlite</a> command-line utility.</li> <li>The <a href="c_interface.html">C/C++ Interface</a>.</li> <li>The <a href="fileformat.html">file format</a> used by SQLite databases.</li> <li>The <a href="arch.html">Architecture of the SQLite Library</a> describes how the library is put together. <b>(preliminary)</b></li> <li>The <a href="lang.html">SQL Language</a> subset understood by SQLite. <b>(under development)</b></li> </ul> </p> <p>The SQLite source code is 35% comment. These comments are another important source of information. </p> | > > | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | <p><ul> <li>Information on the <a href="sqlite.html">sqlite</a> command-line utility.</li> <li>The <a href="c_interface.html">C/C++ Interface</a>.</li> <li>The <a href="fileformat.html">file format</a> used by SQLite databases.</li> <li>The <a href="arch.html">Architecture of the SQLite Library</a> describes how the library is put together. <b>(preliminary)</b></li> <li>A description of the <a href="opcode.html">virtual machine</a> that SQLite uses to access the database. <b>(preliminary)</b></li> <li>The <a href="lang.html">SQL Language</a> subset understood by SQLite. <b>(under development)</b></li> </ul> </p> <p>The SQLite source code is 35% comment. These comments are another important source of information. </p> |
︙ | ︙ |