Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove reference to GDBM in the documentation of the "sqlite" command-line utility. (CVS 274) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0ffab36d1fc29125fdcf0d732073f770 |
User & Date: | drh 2001-09-28 18:14:17.000 |
Context
2001-09-28
| ||
23:11 | Documentation updates. (CVS 275) (check-in: 4b4bfc6290 user: drh tags: trunk) | |
18:14 | Remove reference to GDBM in the documentation of the "sqlite" command-line utility. (CVS 274) (check-in: 0ffab36d1f user: drh tags: trunk) | |
18:10 | Line tclsqlite.so against the stub library. (CVS 273) (check-in: 7e79e91b03 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.14 2001/09/28 18:14:17 drh Exp $} puts {<html> <head> <title>sqlite: A program of interacting with SQLite databases</title> </head> <body bgcolor=white> <h1 align=center> |
︙ | ︙ | |||
20 21 22 23 24 25 26 | <b>sqlite</b> that allows the user to manually enter and execute SQL commands against an SQLite database. This document provides a brief introduction on how to use <b>sqlite</b>. <h2>Getting Started</h2> <p>To start the <b>sqlite</b> program, just type "sqlite" followed by | | < < < | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <b>sqlite</b> that allows the user to manually enter and execute SQL commands against an SQLite database. This document provides a brief introduction on how to use <b>sqlite</b>. <h2>Getting Started</h2> <p>To start the <b>sqlite</b> program, just type "sqlite" followed by the name the file that holds the SQLite database. If the file does not exist, a new one is created automatically. The <b>sqlite</b> program will then prompt you to enter SQL. Type in SQL statements (terminated by a semicolon), press "Enter" and the SQL will be executed. It's as simple as that!</p> <p>For example, to create a new SQLite database named "ex1" with a single table named "tbl1", you might do this:</p> } |
︙ | ︙ |