Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the homepage - fix the CVS access instructions. (CVS 1131) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
653a7dd97ed95e66bd2973169735ee73 |
User & Date: | drh 2003-12-15 17:51:19.000 |
Context
2003-12-16
| ||
03:44 | Improvements to the way PRAGMA integrity_check works. More likely to output userful information when given a corrupt database. (CVS 1132) (check-in: b92c31d6c1 user: drh tags: trunk) | |
2003-12-15
| ||
17:51 | Updates to the homepage - fix the CVS access instructions. (CVS 1131) (check-in: 653a7dd97e user: drh tags: trunk) | |
2003-12-10
| ||
03:13 | Fix a bulk-memory initialization problem in the expression list logic. (CVS 1130) (check-in: d654995440 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.80 2003/12/15 17:51:19 drh Exp $} puts {<html> <head><title>SQLite: An Embeddable SQL Database Engine</title></head> <body bgcolor=white> <h1 align=center>SQLite<br>An Embeddable SQL Database Engine</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
48 49 50 51 52 53 54 | puts {<h2>Features</h2> <p><ul> <li>Implements most of SQL92. (<a href="omitted.html">Features not supported</a>)</li> <li>A complete database (with multiple tables and indices) is stored in a single disk file.</li> | | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | puts {<h2>Features</h2> <p><ul> <li>Implements most of SQL92. (<a href="omitted.html">Features not supported</a>)</li> <li>A complete database (with multiple tables and indices) is stored in a single disk file.</li> <li>ACID (Atomic, Consistent, Isolated, Durable) transactions.</li> <li>Database files can be freely shared between machines with different byte orders.</li> <li>Supports databases up to 2 terabytes (2^41 bytes) in size.</li> <li>Small memory footprint: less than 25K lines of C code.</li> <li><a href="speed.html">Two times faster</a> than PostgreSQL and MySQL for many common operations.</li> <li>Very simple <a href="c_interface.html">C/C++ interface</a> requires the use of only three functions and one opaque structure.</li> <li><a href="tclsqlite.html">TCL bindings</a> included. Bindings for many other languages <a href="http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers"> available separately.</a></li> <li>Simple, well-commented source code.</li> <li>Automated test suite provides over 90% code coverage.</li> <li>Self-contained: no external dependencies.</li> <li>Built and tested under Linux and Windows.</li> <li>Sources are in the <a href="copyright.html">public domain</a>. Use for any purpose.</li> </ul> </p> } |
︙ | ︙ | |||
87 88 89 90 91 92 93 | at the <a href="http://www.sqlite.org/cvstrac/">CVS server</a>.</p> <p>Complete source code and precompiled binaries for the latest release are <a href="download.html">available for download</a> on this site. You can also obtain the latest changes by anonymous CVS access: <blockquote><pre> | | | < < < < < < < < | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | at the <a href="http://www.sqlite.org/cvstrac/">CVS server</a>.</p> <p>Complete source code and precompiled binaries for the latest release are <a href="download.html">available for download</a> on this site. You can also obtain the latest changes by anonymous CVS access: <blockquote><pre> cvs -d :pserver:anonymous@www.sqlite.org:/sqlite login cvs -d :pserver:anonymous@www.sqlite.org:/sqlite checkout sqlite </pre></blockquote> When prompted for a password, enter "anonymous". </p> <p> Whenever either of the first two digits in the version number for SQLite change, it means that the underlying file format has changed. Usually these changes are backwards compatible. See <a href="formatchng.html">formatchng.html</a> for additional information. </p> |
︙ | ︙ |