:-) (CVS 203)

FossilOrigin-Name: b5f994feb44f76782279cdbb1654d340f63e8995
This commit is contained in:
drh 2001-04-05 16:49:44 +00:00
parent 6f63c25856
commit 9daea74924
3 changed files with 22 additions and 11 deletions

View File

@ -1,5 +1,5 @@
C :-)\s(CVS\s202) C :-)\s(CVS\s203)
D 2001-04-05T16:25:53 D 2001-04-05T16:49:44
F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4 F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4
F Makefile.in 25791375ce9f4f5b57d4cab67f0d58d772c96451 F Makefile.in 25791375ce9f4f5b57d4cab67f0d58d772c96451
F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958 F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958
@ -87,14 +87,14 @@ F www/changes.tcl e9379e995e19486b352c82d54e87041153739fca
F www/crosscompile.tcl c99efacb3aefaa550c6e80d91b240f55eb9fd33e F www/crosscompile.tcl c99efacb3aefaa550c6e80d91b240f55eb9fd33e
F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
F www/fileformat.tcl cfb7fba80b7275555281ba2f256c00734bcdd1c9 F www/fileformat.tcl cfb7fba80b7275555281ba2f256c00734bcdd1c9
F www/index.tcl 2deb0b26970999691ed98c2e1a0bb180da8e74b8 F www/index.tcl 553a41c4157fe411465aefe391bec5687027e73f
F www/lang.tcl 7fec414487ebee2cbb17c90addf5a026cd10396a F www/lang.tcl 7fec414487ebee2cbb17c90addf5a026cd10396a
F www/mingw.tcl fc5f4ba9d336b6e8c97347cc6496d6162461ef60 F www/mingw.tcl fc5f4ba9d336b6e8c97347cc6496d6162461ef60
F www/opcode.tcl cb3a1abf8b7b9be9f3a228d097d6bf8b742c2b6f F www/opcode.tcl cb3a1abf8b7b9be9f3a228d097d6bf8b742c2b6f
F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f
F www/tclsqlite.tcl 06f81c401f79a04f2c5ebfb97e7c176225c0aef2 F www/tclsqlite.tcl 06f81c401f79a04f2c5ebfb97e7c176225c0aef2
F www/vdbe.tcl 0c8aaa529dd216ccbf7daaabd80985e413d5f9ad F www/vdbe.tcl 0c8aaa529dd216ccbf7daaabd80985e413d5f9ad
P 8390f6521af0f1c5cd0298cc4a1dfa3f092c1e15 P 04530e451662e298506d314ce014a2643f4ff813
R d248ed8781ae0c5dba14ccb218b35cd1 R 49065187ae08404d71560bc6435e0230
U drh U drh
Z 67d07e427c448f5bf8d4cc1c19e29397 Z 129d2eb1b186c2287a85e53c6f5e995c

View File

@ -1 +1 @@
04530e451662e298506d314ce014a2643f4ff813 b5f994feb44f76782279cdbb1654d340f63e8995

View File

@ -1,7 +1,7 @@
# #
# Run this TCL script to generate HTML for the index.html file. # Run this TCL script to generate HTML for the index.html file.
# #
set rcsid {$Id: index.tcl,v 1.35 2001/04/05 15:57:14 drh Exp $} set rcsid {$Id: index.tcl,v 1.36 2001/04/05 16:49:44 drh Exp $}
puts {<html> puts {<html>
<head><title>SQLite: An SQL Database Library Built Atop GDBM</title></head> <head><title>SQLite: An SQL Database Library Built Atop GDBM</title></head>
@ -55,12 +55,23 @@ than GDBM.</li>
<h2>Current Status</h2> <h2>Current Status</h2>
<p>A <a href="changes.html">change history</a> is available online. <p>A <a href="changes.html">change history</a> is available online.
There are currently no <em>known</em> bugs or memory leaks 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> 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 is used to verify test coverage. The test suite currently exercises
all code except for a few areas which are unreachable or which are all code except for a few areas which are unreachable or which are
only reached when <tt>malloc()</tt> fails. The code has been tested only reached when <tt>malloc()</tt> fails.</p>
for memory leaks and is found to be clean.</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'&nbsp;LIKE&nbsp;'A'</b> returns
TRUE but <b>'&aelig;'&nbsp;LIKE&nbsp;'&AElig;'</b>" returns FALSE.
</p></li>
</ul>
<p><b>Important Note:</b> Serious bugs have been found in versions <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 1.0.22 on Unix and 1.0.26 on Windows. Users of these or earlier