Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 10) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1c1d9c0d4ad91cf0b077f4fff82499dc |
User & Date: | drh 2000-05-30 00:05:13.000 |
Context
2000-05-30
| ||
00:51 | :-) (CVS 11) (check-in: 9818723ee1 user: drh tags: trunk) | |
00:05 | :-) (CVS 10) (check-in: 1c1d9c0d4a user: drh tags: trunk) | |
2000-05-29
| ||
23:58 | :-) (CVS 9) (check-in: 84333008b7 user: drh tags: trunk) | |
Changes
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.4 2000/05/30 00:05:13 drh Exp $} puts {<html> <head><title>SQLite: An SQL Frontend For GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Frontend For GDBM</h1> <p align=center>} puts "Last modified [lrange $rcsid 3 4] GMT" |
︙ | ︙ | |||
60 61 62 63 64 65 66 | <li>INSERT INTO</li> <li>UPDATE</li> <li>SELECT</li> <li>DELETE FROM</li> </ul> </p> | | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <li>INSERT INTO</li> <li>UPDATE</li> <li>SELECT</li> <li>DELETE FROM</li> </ul> </p> <p>A few of the many SQL features that SQLite does not (currently) implement are as follows:</p> <p> <ul> <li>ALTER TABLE</li> <li>The GROUP BY or HAVING clauses of a SELECT</li> <li>The LIKE or IN operators</li> |
︙ | ︙ |