Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in web documentation. Tickets #770 and #771. (CVS 1668) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
04673066ff6a7c127559ba448fe50a4d |
User & Date: | drh 2004-06-22 14:57:54.000 |
Context
2004-06-22
| ||
14:59 | Version 3.0.1 ALPHA (CVS 1669) (check-in: ac6683e380 user: drh tags: trunk) | |
14:57 | Fix typos in web documentation. Tickets #770 and #771. (CVS 1668) (check-in: 04673066ff user: drh tags: trunk) | |
14:52 | The download.tcl script used to generate download.html must run out of the doc subdirectory of the build. (CVS 1667) (check-in: 80c7b13ff3 user: drh tags: trunk) | |
Changes
Changes to www/version3.tcl.
︙ | ︙ | |||
126 127 128 129 130 131 132 | type of "TEXT" tries to convert numbers into an ASCII-Text representation before storing them. But BLOBs are stored in TEXT columns as BLOBs because you cannot in general convert a BLOB into text. </p> <p> In most other SQL database engines the datatype is associated with | | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | type of "TEXT" tries to convert numbers into an ASCII-Text representation before storing them. But BLOBs are stored in TEXT columns as BLOBs because you cannot in general convert a BLOB into text. </p> <p> In most other SQL database engines the datatype is associated with the table column that holds the data - with the data container. In SQLite 3.0, the datatype is associated with the data itself, not with its container. <a href="http://www.paulgraham.com/">Paul Graham</a> in his book <a href="http://www.paulgraham.com/acl.html"><i>ANSI Common Lisp</i></a> calls this property "Manifest Typing". Other writers have other definitions for the term "manifest typing", so beware of confusion. But by whatever name, that is the datatype |
︙ | ︙ | |||
180 181 182 183 184 185 186 | computation time, so programmers are advised to pick a single encoding and stick with it in order to minimize the amount of unnecessary format juggling. </p> <p> SQLite is not particular about the text it receives and is more than | | | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | computation time, so programmers are advised to pick a single encoding and stick with it in order to minimize the amount of unnecessary format juggling. </p> <p> SQLite is not particular about the text it receives and is more than happy to process text strings that are not normalized or even well-formed UTF-8 or UTF-16. Thus, programmers who want to store IS08859 data can do so using the UTF-8 interfaces. As long as no attempts are made to use a UTF-16 collating sequence or SQL function, the byte sequence of the text will not be modified in any way. </p> <h3>User-defined Collating Sequences</h3> |
︙ | ︙ | |||
278 279 280 281 282 283 284 | to mean two or more database files, then it is entirely possible for two processes to be writing to the same database at the same time. To further support this capability, commits of transactions involving two or more ATTACHed database are now atomic. </p> } | | | 278 279 280 281 282 283 284 285 | to mean two or more database files, then it is entirely possible for two processes to be writing to the same database at the same time. To further support this capability, commits of transactions involving two or more ATTACHed database are now atomic. </p> } footer {$Id: version3.tcl,v 1.3 2004/06/22 14:57:54 drh Exp $} |