Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 203) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b5f994feb44f76782279cdbb1654d340 |
User & Date: | drh 2001-04-05 16:49:44.000 |
Context
2001-04-05
| ||
16:50 | Version 1.0.29 (CVS 474) (check-in: 4b3ffa161a user: drh tags: trunk) | |
16:49 | :-) (CVS 203) (check-in: b5f994feb4 user: drh tags: trunk) | |
16:25 | :-) (CVS 202) (check-in: 04530e4516 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.36 2001/04/05 16:49:44 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Library Built Atop GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Library Built Atop <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a></h1> <p align=center>} |
︙ | ︙ | |||
51 52 53 54 55 56 57 | <li>Built and tested under Linux, HPUX, and WinNT.</li> </ul> </p> <h2>Current Status</h2> <p>A <a href="changes.html">change history</a> is available online. | | | | > > > > > > > > > > > | 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 78 79 80 81 | <li>Built and tested under Linux, HPUX, and WinNT.</li> </ul> </p> <h2>Current Status</h2> <p>A <a href="changes.html">change history</a> is available online. There are currently no <em>known</em> memory leaks or debilitating bugs in the library. <a href="http://gcc.gnu.org/onlinedocs/gcov_1.html">Gcov</a> is used to verify test coverage. The test suite currently exercises all code except for a few areas which are unreachable or which are only reached when <tt>malloc()</tt> fails.</p> <p>Known bugs:</p> <ul> <li><p> The LIKE operator is suppose to ignore case. But it only ignores case for 7-bit Latin characters. The case of 8-bit iso8859 characters or UTF-8 characters is signification. Hence, <b>'a' LIKE 'A'</b> returns TRUE but <b>'æ' LIKE 'Æ'</b>" returns FALSE. </p></li> </ul> <p><b>Important Note:</b> Serious bugs have been found in versions 1.0.22 on Unix and 1.0.26 on Windows. Users of these or earlier versions of SQLite should upgrade.</p> <h2>Documentation</h2> |
︙ | ︙ |