Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge the branch-3.31 changes into trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2f7a35660e78ffb21be6d9ced896755b |
User & Date: | drh 2020-05-16 00:12:23.253 |
Context
2020-05-18
| ||
14:36 | Fix a minor typo in the rtree documentation. (check-in: da19a96616 user: drh tags: trunk) | |
2020-05-16
| ||
00:12 | Merge the branch-3.31 changes into trunk. (check-in: 2f7a35660e user: drh tags: trunk) | |
00:10 | Remove the FAQ about the round() function. (check-in: b064af7596 user: drh tags: branch-3.31) | |
2020-05-15
| ||
17:41 | Update the round() question in the FAQ. (check-in: 2beb2b13f2 user: drh tags: trunk) | |
Changes
Changes to pages/faq.in.
︙ | ︙ | |||
359 360 361 362 363 364 365 | <p>The [sqlite3_prepare_v2()] interface creates a [prepared statement] that will automatically recompile itself if the schema changes. The easiest way to deal with [SQLITE_SCHEMA] errors is to always use [sqlite3_prepare_v2()] instead of [sqlite3_prepare()]. } | | < < < < < < < < < < < < < < < < < < < < < < < < < | 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | <p>The [sqlite3_prepare_v2()] interface creates a [prepared statement] that will automatically recompile itself if the schema changes. The easiest way to deal with [SQLITE_SCHEMA] errors is to always use [sqlite3_prepare_v2()] instead of [sqlite3_prepare()]. } faq {} {} faq { I get some compiler warnings when I compile SQLite. Isn't this a problem? Doesn't it indicate poor code quality? } { <p>Quality assurance in SQLite is done using [test coverage | full-coverage testing], |
︙ | ︙ | |||
643 644 645 646 647 648 649 | # End of questions and answers. ############# hd_puts {<h2>Frequently Asked Questions</h2>} hd_puts {<ol class=nounderline>} for {set i 1} {$i<$cnt} {incr i} { | > | > > | | 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | # End of questions and answers. ############# hd_puts {<h2>Frequently Asked Questions</h2>} hd_puts {<ol class=nounderline>} for {set i 1} {$i<$cnt} {incr i} { if {[lindex $faq($i) 1]==""} continue; hd_puts "<li value='$i'><a href=\"#q$i\">[lindex $faq($i) 0]</a></li>" } hd_puts {</ol>} for {set i 1} {$i<$cnt} {incr i} { set body [lindex $faq($i) 1] if {[string length $body]==0} continue; hd_fragment q$i hd_puts "<p><b>($i) [lindex $faq($i) 0]</b></p>\n" hd_resolve "<blockquote>$body</blockquote></li>\n" } hd_puts {</ol>} </tcl> |