1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Documentation updates. (CVS 720)

FossilOrigin-Name: e372a60be8de3332ab6e45d82f21227b8b9acf82
This commit is contained in:
drh
2002-08-18 19:09:22 +00:00
parent cb48588297
commit d8acdb3c36
10 changed files with 828 additions and 51 deletions

View File

@@ -1,7 +1,7 @@
#
# Run this script to generated a faq.html output file
#
set rcsid {$Id: faq.tcl,v 1.17 2002/08/15 11:48:14 drh Exp $}
set rcsid {$Id: faq.tcl,v 1.18 2002/08/18 19:09:24 drh Exp $}
puts {<html>
<head>
@@ -354,8 +354,8 @@ faq {
and you can not include binary data in the middle of the ASCII text string
of an INSERT statement.</p>
<p>SQLite is 8-bit clean with regard to the data is stores as long as
the data does not contain any NUL characters. If you want to store binary
<p>SQLite is 8-bit clean with regard to the data it stores as long as
the data does not contain any '\000' characters. If you want to store binary
data, consider encoding your data in such a way that it contains no NUL
characters and inserting it that way. You might use URL-style encoding:
encode NUL as "%00" and "%" as "%25". Or, you might consider encoding your