Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the quickstart document. (CVS 2024) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
55b03c560d2f66c55d64c3e9f9577e33 |
User & Date: | drh 2004-10-19 01:31:20.000 |
Context
2004-10-19
| ||
16:40 | Reinsert code deleted by (1998) that we thought was unused but was in fact needed. Fix for ticket #966. (CVS 2025) (check-in: 370ca53950 user: drh tags: trunk) | |
01:31 | Fix a typo in the quickstart document. (CVS 2024) (check-in: 55b03c560d user: drh tags: trunk) | |
2004-10-18
| ||
21:34 | Fix typos in the names of some regression tests. Ticket #962. (CVS 2023) (check-in: 77542beb31 user: drh tags: trunk) | |
Changes
Changes to www/quickstart.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the quickstart.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the quickstart.html file. # set rcsid {$Id: quickstart.tcl,v 1.6 2004/10/19 01:31:20 drh Exp $} source common.tcl header {SQLite In 5 Minutes Or Less} puts { <p>Here is what you do to start experimenting with SQLite without having to do a lot of tedious reading and configuration:</p> <h2>Download The Code</h2> |
︙ | ︙ | |||
41 42 43 44 45 46 47 | <blockquote><pre> #!/usr/bin/tclsh if {$argc!=2} { puts stderr "Usage: %s DATABASE SQL-STATEMENT" exit 1 } | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <blockquote><pre> #!/usr/bin/tclsh if {$argc!=2} { puts stderr "Usage: %s DATABASE SQL-STATEMENT" exit 1 } load /usr/lib/tclsqlite3.so Sqlite3 <b>sqlite3</b> db [lindex $argv 0] <b>db</b> eval [lindex $argv 1] x { foreach v $x(*) { puts "$v = $x($v)" } puts "" } |
︙ | ︙ | |||
101 102 103 104 105 106 107 | <b>sqlite3_close</b>(db); return 0; } </pre></blockquote> </li> </ul> } | | | 101 102 103 104 105 106 107 108 | <b>sqlite3_close</b>(db); return 0; } </pre></blockquote> </li> </ul> } footer {$Id: quickstart.tcl,v 1.6 2004/10/19 01:31:20 drh Exp $} |