Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in limits.html. (CVS 4193) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c709140b51610a2fbbff15c1fd807832 |
User & Date: | drh 2007-07-30 23:02:39.000 |
Context
2007-08-03
| ||
07:33 | Avoid reloading the schema when an expired statement is finalized or reset. This is only necessary when the in-memory schema does not match the file-system schema. (CVS 4194) (check-in: 61de5b52da user: danielk1977 tags: trunk) | |
2007-07-30
| ||
23:02 | Fix a typo in limits.html. (CVS 4193) (check-in: c709140b51 user: drh tags: trunk) | |
20:41 | Make excess output from the CLI appear inside SQL comments so as not to interfere with generated SQL. Ticket #2544. (CVS 4192) (check-in: 49a2e85511 user: drh tags: trunk) | |
Changes
Changes to www/limits.tcl.
1 2 3 | # # Run this script to generate the limits.html output file # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this script to generate the limits.html output file # set rcsid {$Id: limits.tcl,v 1.4 2007/07/30 23:02:39 drh Exp $} source common.tcl header {Implementation Limits For SQLite} puts { <h2>Limits In SQLite</h2> <p> "Limits" in the context of this article means sizes or |
︙ | ︙ | |||
75 76 77 78 79 80 81 | to something more in the range of a few million if that is possible. </p> <p> During part of SQLite's INSERT and SELECT processing, the complete content of each row in the database is encoded as a single BLOB. | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | to something more in the range of a few million if that is possible. </p> <p> During part of SQLite's INSERT and SELECT processing, the complete content of each row in the database is encoded as a single BLOB. So the SQLITE_MAX_LENGTH parameter also determines the maximum number of bytes in a row. </p> } limititem {Maximum Number Of Columns} { <p> The SQLITE_MAX_COLUMN compile-time parameter is used to set an upper |
︙ | ︙ |