Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the FAQ. (CVS 2912) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5be03a361d9292ccdf311372be6add29 |
User & Date: | drh 2006-01-10 23:00:42.000 |
Context
2006-01-11
| ||
01:08 | Prepare for the release of version 3.3.0. (CVS 2913) (check-in: 302993ae16 user: drh tags: trunk) | |
2006-01-10
| ||
23:00 | Fix a typo in the FAQ. (CVS 2912) (check-in: 5be03a361d user: drh tags: trunk) | |
20:36 | Fix bug in the server1 test script. (CVS 2911) (check-in: 25db22b671 user: drh tags: trunk) | |
Changes
Changes to www/faq.tcl.
1 2 3 | # # Run this script to generated a faq.html output file # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this script to generated a faq.html output file # set rcsid {$Id: faq.tcl,v 1.32 2006/01/10 23:00:42 drh Exp $} source common.tcl header {SQLite Frequently Asked Questions</title>} set cnt 1 proc faq {question answer} { set ::faq($::cnt) [list [string trim $question] [string trim $answer]] incr ::cnt |
︙ | ︙ | |||
314 315 316 317 318 319 320 | in it. And it will keep all 500 characters intact - it never truncates. </p> } faq { Does SQLite support a BLOB type? } { | | | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | in it. And it will keep all 500 characters intact - it never truncates. </p> } faq { Does SQLite support a BLOB type? } { <p>SQLite versions 3.0 and later let you puts BLOB data into any column, even columns that are declared to hold some other type.</p> } faq { How do I add or delete columns from an existing table in SQLite. } { <p>SQLite has limited |
︙ | ︙ |