Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix bug in documentation. Ticket #1927. (CVS 3359) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
90296bc8fa443833e6316c873dd18b95 |
User & Date: | drh 2006-08-19 13:32:05.000 |
Context
2006-08-22
| ||
14:45 | Add the ext/fts1 subdirectory for holding the first full-text search extension. (CVS 3360) (check-in: 7f152f9f3a user: drh tags: trunk) | |
2006-08-19
| ||
13:32 | Fix bug in documentation. Ticket #1927. (CVS 3359) (check-in: 90296bc8fa user: drh tags: trunk) | |
11:34 | Fix for the (unsupported) soundex algorithm so that it conforms to Knuth. Ticket #1925. Test cases added. (CVS 3358) (check-in: 7810d1abf6 user: drh tags: trunk) | |
Changes
Changes to www/sqlite.tcl.
1 2 3 | # # Run this Tcl script to generate the sqlite.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: sqlite.tcl,v 1.24 2006/08/19 13:32:05 drh Exp $} source common.tcl header {sqlite: A command-line access program for SQLite databases} puts { <h2>sqlite: A command-line access program for SQLite databases</h2> <p>The SQLite library includes a simple command-line utility named <b>sqlite</b> that allows the user to manually enter and execute SQL |
︙ | ︙ | |||
555 556 557 558 559 560 561 | } puts { <h3>Ending shell commands</h3> <p> SQLite commands are normally terminated by a semicolon. In the shell | | | | 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | } puts { <h3>Ending shell commands</h3> <p> SQLite commands are normally terminated by a semicolon. In the shell you can also use the word "GO" (case-insensitive) or a slash character "/" on a line by itself to end a command. These are used by SQL Server and Oracle, respectively. These won't work in <b>sqlite_exec()</b>, because the shell translates these into a semicolon before passing them to that function.</p> } puts { <h3>Compiling the sqlite program from sources</h3> |
︙ | ︙ |