Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 5) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9fd0628af897c54c122fdef02f797883 |
User & Date: | drh 2000-05-29 18:50:16.000 |
Context
2000-05-29
| ||
20:41 | :-) (CVS 6) (check-in: 1517f85243 user: drh tags: trunk) | |
18:50 | :-) (CVS 5) (check-in: 9fd0628af8 user: drh tags: trunk) | |
18:32 | :-) (CVS 4) (check-in: 1d3286702c user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
132 133 134 135 136 137 138 139 | PUBLISH = \ sqlite.tar.gz \ all.tar.gz \ index.html \ sqlite.html \ c_interface.html publish: $(PUBLISH) | > > | | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | PUBLISH = \ sqlite.tar.gz \ all.tar.gz \ index.html \ sqlite.html \ c_interface.html website: $(PUBLISH) publish: $(PUBLISH) scp $(PUBLISH) hwaci@oak.he.net:public_html/sw/sqlite clean: rm -f *.o sqlite libsqlite.a sqlite.h rm -f lemon lempar.c parse.* sqlite.tar.gz |
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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.3 2000/05/29 18:50:16 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" puts {</p>} puts { <blockquote><em><p> SQLite is currently "alpha"-quality software under active development. It is being release early so that you can have an opportunity to comment on its design and implementation and possibly influence the direction of its development. Your constructive comments are <b>very</b> important to us and are encouraged. If you have any suggestions or any words of encouragement, please submit them to the mailing list described <a href="#mailinglist">below</a>.</p> <p>If you are looking for a stable SQL library, check back here in a few months...</p></em></blockquote> } puts {<h2>Introduction</h2> <p>SQLite is a C library that implements an SQL frontend to GDBM. SQLite is intended for use in standalone programs that need to use an SQL database but which do not have access to a full-blown SQL RDBMS.</p> |
︙ | ︙ | |||
53 54 55 56 57 58 59 | <p>Some 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> | | > | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <p>Some 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> <li>The COUNT(), MAX(), MIN(), and AVG() functions</li> <li>Constraints</li> <li>Nested queries</li> <li>Transactions or rollback</li> </ul> </p> <H2>Status</h2> |
︙ | ︙ | |||
78 79 80 81 82 83 84 | the mailing (see below) and let us know.</p> <p>SQLite has so far been tested only on RedHat 6.0 Linux. But we know of no reason why it will not work on any other Unix platform, or on Windows95/98/NT.</p> } | > > | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | the mailing (see below) and let us know.</p> <p>SQLite has so far been tested only on RedHat 6.0 Linux. But we know of no reason why it will not work on any other Unix platform, or on Windows95/98/NT.</p> } puts { <a name="mailinglist" /> <h2>Mailing List</h2> <p>A mailing list has been set up on eGroups for discussion of SQLite design issues or for asking questions about SQLite.</p> <center> <a href="http://www.egroups.com/subscribe/sqlite"> <img src="http://www.egroups.com/img/ui/join.gif" border=0 /><br /> Click to subscribe to sqlite</a> </center>} |
︙ | ︙ |
Changes to www/sqlite.tcl.
1 2 3 | # # Run this Tcl script to generate the sqlite.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: sqlite.tcl,v 1.3 2000/05/29 18:50:16 drh Exp $} puts {<html> <head> <title>sqlite: A program of interacting with SQLite databases</title> </head> <body bgcolor=white> <h1 align=center> |
︙ | ︙ | |||
274 275 276 277 278 279 280 | begin writing to standard output again. For example:</p>} Code { sql> (((.mode list))) sql> (((.separator |))) sql> (((.output test_file_1.txt))) sql> (((select * from tbl1;))) | | | 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | begin writing to standard output again. For example:</p>} Code { sql> (((.mode list))) sql> (((.separator |))) sql> (((.output test_file_1.txt))) sql> (((select * from tbl1;))) sql> (((.exit))) $ (((cat test_file_1.txt))) hello|10 goodbye|20 $ } puts { |
︙ | ︙ |