sqlite.tcl 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. #
  2. # Run this Tcl script to generate the sqlite.html file.
  3. #
  4. set rcsid {$Id: sqlite.tcl,v 1.16 2001/11/24 13:23:05 drh Exp $}
  5. puts {<html>
  6. <head>
  7. <title>sqlite: A program of interacting with SQLite databases</title>
  8. </head>
  9. <body bgcolor=white>
  10. <h1 align=center>
  11. sqlite: A program to administer SQLite databases
  12. </h1>}
  13. puts "<p align=center>
  14. (This page was last modified on [lrange $rcsid 3 4] UTC)
  15. </p>"
  16. puts {
  17. <p>The SQLite library includes a simple command-line utility named
  18. <b>sqlite</b> that allows the user to manually enter and execute SQL
  19. commands against an SQLite database. This document provides a brief
  20. introduction on how to use <b>sqlite</b>.
  21. <h2>Getting Started</h2>
  22. <p>To start the <b>sqlite</b> program, just type "sqlite" followed by
  23. the name the file that holds the SQLite database. If the file does
  24. not exist, a new one is created automatically.
  25. The <b>sqlite</b> program will
  26. then prompt you to enter SQL. Type in SQL statements (terminated by a
  27. semicolon), press "Enter" and the SQL will be executed.</p>
  28. <p>For example, to create a new SQLite database named "ex1"
  29. with a single table named "tbl1", you might do this:</p>
  30. }
  31. proc Code {body} {
  32. puts {<blockquote><pre>}
  33. regsub -all {&} [string trim $body] {\&amp;} body
  34. regsub -all {>} $body {\&gt;} body
  35. regsub -all {<} $body {\&lt;} body
  36. regsub -all {\(\(\(} $body {<font color="#00671f"><u>} body
  37. regsub -all {\)\)\)} $body {</u></font>} body
  38. puts $body
  39. puts {</pre></blockquote>}
  40. }
  41. Code {
  42. $ (((sqlite ex1)))
  43. SQLite version 2.0.0
  44. Enter ".help" for instructions
  45. sqlite> (((create table tbl1(one varchar(10), two smallint);)))
  46. sqlite> (((insert into tbl1 values('hello!',10);)))
  47. sqlite> (((insert into tbl1 values('goodbye', 20);)))
  48. sqlite> (((select * from tbl1;)))
  49. hello!|10
  50. goodbye|20
  51. sqlite>
  52. }
  53. puts {
  54. <p>(In the example above, and in all subsequent examples, the commands
  55. you type are underlined and shown with a green tint and the responses
  56. from the computer are shown in black without underlining.)</p>
  57. <p>You can terminate the sqlite program by typing your systems
  58. End-Of-File character (usually a Control-D) or the interrupt
  59. character (usually a Control-C).</p>
  60. <p>Make sure you type a semicolon at the end of each SQL command!
  61. The sqlite looks for a semicolon to know when your SQL command is
  62. complete. If you omit the semicolon, sqlite will give you a
  63. continuation prompt and wait for you to enter more text to be
  64. added to the current SQL command. This feature allows you to
  65. enter SQL commands that span multiple lines. For example:</p>
  66. }
  67. Code {
  68. sqlite> (((CREATE TABLE tbl2 ()))
  69. ...> ((( f1 varchar(30) primary key,)))
  70. ...> ((( f2 text,)))
  71. ...> ((( f3 real)))
  72. ...> ((();)))
  73. sqlite>
  74. }
  75. puts {
  76. <h2>Aside: Querying the SQLITE_MASTER table</h2>
  77. <p>The database schema in an SQLite database is stored in
  78. a special table named "sqlite_master".
  79. You can execute "SELECT" statements against the
  80. special sqlite_master table just like any other table
  81. in an SQLite database. For example:</p>
  82. }
  83. Code {
  84. $ (((sqlite ex1)))
  85. SQlite vresion 2.0.0
  86. Enter ".help" for instructions
  87. sqlite> (((select * from sqlite_master;)))
  88. type = table
  89. name = tbl1
  90. tbl_name = tbl1
  91. rootpage = 3
  92. sql = create table tbl1(one varchar(10), two smallint)
  93. sqlite>
  94. }
  95. puts {
  96. <p>
  97. But you cannot execute DROP TABLE, UPDATE, INSERT or DELETE against
  98. the sqlite_master table. The sqlite_master
  99. table is updated automatically as you create or drop tables and
  100. indices from the database. You can not make manual changes
  101. to the sqlite_master table.
  102. </p>
  103. <h2>Special commands to sqlite</h2>
  104. <p>
  105. Most of the time, sqlite just reads lines of input and passes them
  106. on to the SQLite library for execution.
  107. But if an input line begins with a dot ("."), then
  108. that line is intercepted and interpreted by the sqlite program itself.
  109. These "dot commands" are typically used to change the output format
  110. of queries, or to execute certain prepackaged query statements.
  111. </p>
  112. <p>
  113. For a listing of the available dot commands, you can enter ".help"
  114. at any time. For example:
  115. </p>}
  116. Code {
  117. sqlite> (((.help)))
  118. .dump Dump database in a text format
  119. .exit Exit this program
  120. .explain Set output mode suitable for EXPLAIN
  121. .header ON|OFF Turn display of headers on or off
  122. .help Show this message
  123. .indices TABLE Show names of all indices on TABLE
  124. .mode MODE Set mode to one of "line", "column", "list", or "html"
  125. .mode insert TABLE Generate SQL insert statements for TABLE
  126. .output FILENAME Send output to FILENAME
  127. .output stdout Send output to the screen
  128. .schema ?TABLE? Show the CREATE statements
  129. .separator STRING Change separator string for "list" mode
  130. .tables List names all tables in the database
  131. .timeout MS Try opening locked tables for MS milliseconds
  132. .width NUM NUM ... Set column widths for "column" mode
  133. sqlite>
  134. }
  135. puts {
  136. <h2>Changing Output Formats</h2>
  137. <p>The sqlite program is able to show the results of a query
  138. in five different formats: "line", "column", "list", "html", and "insert".
  139. You can use the ".mode" dot command to switch between these three output
  140. formats.</p>
  141. <p>The default output mode is "list". In
  142. list mode, each record of a query result is written on one line of
  143. output and each column within that record is separated by a specific
  144. separator string. The default separator is a pipe symbol ("|").
  145. List mode is especially useful when you are going to send the output
  146. of a query to another program (such as AWK) for additional processing.</p>}
  147. Code {
  148. sqlite> (((.mode list)))
  149. sqlite> (((select * from tbl1;)))
  150. hello|10
  151. goodbye|20
  152. sqlite>
  153. }
  154. puts {
  155. <p>You can use the ".separator" dot command to change the separator
  156. for list mode. For example, to change the separator to a comma and
  157. a space, you could do this:</p>}
  158. Code {
  159. sqlite> (((.separator ", ")))
  160. sqlite> (((select * from tbl1;)))
  161. hello, 10
  162. goodbye, 20
  163. sqlite>
  164. }
  165. puts {
  166. <p>In "line" mode, each column in a row of the database
  167. is shown on a line by itself. Each line consists of the column
  168. name, an equal sign and the column data. Successive records are
  169. separated by a blank line. Here is an example of line mode
  170. output:</p>}
  171. Code {
  172. sqlite> (((.mode line)))
  173. sqlite> (((select * from tbl1;)))
  174. one = hello
  175. two = 10
  176. one = goodbye
  177. two = 20
  178. sqlite>
  179. }
  180. puts {
  181. <p>In column mode, each record is shown on a separate line with the
  182. data aligned in columns. For example:</p>}
  183. Code {
  184. sqlite> (((.mode column)))
  185. sqlite> (((select * from tbl1;)))
  186. one two
  187. ---------- ----------
  188. hello 10
  189. goodbye 20
  190. sqlite>
  191. }
  192. puts {
  193. <p>By default, each column is at least 10 characters wide.
  194. Data that is too wide to fit in a column is truncated. You can
  195. adjust the column widths using the ".width" command. Like this:</p>}
  196. Code {
  197. sqlite> (((.width 12 6)))
  198. sqlite> (((select * from tbl1;)))
  199. one two
  200. ------------ ------
  201. hello 10
  202. goodbye 20
  203. sqlite>
  204. }
  205. puts {
  206. <p>The ".width" command in the example above sets the width of the first
  207. column to 12 and the width of the second column to 6. All other column
  208. widths were unaltered. You can gives as many arguments to ".width" as
  209. necessary to specify the widths of as many columns as are in your
  210. query results.</p>
  211. <p>If you specify a column a width of 0, then the column
  212. width is automatically adjusted to be the maximum of three
  213. numbers: 10, the width of the header, and the width of the
  214. first row of data. This makes the column width self-adjusting.
  215. The default width setting for every column is this
  216. auto-adjusting 0 value.</p>
  217. <p>The column labels that appear on the first two lines of output
  218. can be turned on and off using the ".header" dot command. In the
  219. examples above, the column labels are on. To turn them off you
  220. could do this:</p>}
  221. Code {
  222. sqlite> (((.header off)))
  223. sqlite> (((select * from tbl1;)))
  224. hello 10
  225. goodbye 20
  226. sqlite>
  227. }
  228. puts {
  229. <p>Another useful output mode is "insert". In insert mode, the output
  230. is formatted to look like SQL INSERT statements. You can use insert
  231. mode to generate text that can later be used to input data into a
  232. different database.</p>
  233. <p>When specifying insert mode, you have to give an extra argument
  234. which is the name of the table to be inserted into. For example:</p>
  235. }
  236. Code {
  237. sqlite> (((.mode insert new_table)))
  238. sqlite> (((select * from tbl1;)))
  239. INSERT INTO 'new_table' VALUES('hello',10);
  240. INSERT INTO 'new_table' VALUES('goodbye',20);
  241. sqlite>
  242. }
  243. puts {
  244. <p>The last output mode is "html". In this mode, sqlite writes
  245. the results of the query as an XHTML table. The beginning
  246. &lt;TABLE&gt; and the ending &lt;/TABLE&gt; are not written, but
  247. all of the intervening &lt;TR&gt;s, &lt;TH&gt;s, and &lt;TD&gt;s
  248. are. The html output mode is envisioned as being useful for
  249. CGI.</p>
  250. }
  251. puts {
  252. <h2>Writing results to a file</h2>
  253. <p>By default, sqlite sends query results to standard output. You
  254. can change this using the ".output" command. Just put the name of
  255. an output file as an argument to the .output command and all subsequent
  256. query results will be written to that file. Use ".output stdout" to
  257. begin writing to standard output again. For example:</p>}
  258. Code {
  259. sqlite> (((.mode list)))
  260. sqlite> (((.separator |)))
  261. sqlite> (((.output test_file_1.txt)))
  262. sqlite> (((select * from tbl1;)))
  263. sqlite> (((.exit)))
  264. $ (((cat test_file_1.txt)))
  265. hello|10
  266. goodbye|20
  267. $
  268. }
  269. puts {
  270. <h2>Querying the database schema</h2>
  271. <p>The sqlite program provides several convenience commands that
  272. are useful for looking at the schema of the database. There is
  273. nothing that these commands do that cannot be done by some other
  274. means. These commands are provided purely as a shortcut.</p>
  275. <p>For example, to see a list of the tables in the database, you
  276. can enter ".tables".</p>
  277. }
  278. Code {
  279. sqlite> (((.tables)))
  280. tbl1
  281. tbl2
  282. sqlite>
  283. }
  284. puts {
  285. <p>The ".tables" command is the same as setting list mode then
  286. executing the following query:</p>
  287. <blockquote><pre>
  288. SELECT name FROM sqlite_master
  289. WHERE type='table'
  290. ORDER BY name;
  291. </pre></blockquote>
  292. <p>In fact, if you look at the source code to the sqlite program
  293. (found in the source tree in the file src/shell.c) you'll find
  294. exactly the above query.</p>
  295. <p>The ".indices" command works in a similar way to list all of
  296. the indices for a particular table. The ".indices" command takes
  297. a single argument which is the name of the table for which the
  298. indices are desired. Last, but not least, is the ".schema" command.
  299. With no arguments, the ".schema" command shows the original CREATE TABLE
  300. and CREATE INDEX statements that were used to build the current database.
  301. If you give the name of a table to ".schema", it shows the original
  302. CREATE statement used to make that table and all if its indices.
  303. We have:</p>}
  304. Code {
  305. sqlite> (((.schema)))
  306. create table tbl1(one varchar(10), two smallint)
  307. CREATE TABLE tbl2 (
  308. f1 varchar(30) primary key,
  309. f2 text,
  310. f3 real
  311. )
  312. sqlite> (((.schema tbl2)))
  313. CREATE TABLE tbl2 (
  314. f1 varchar(30) primary key,
  315. f2 text,
  316. f3 real
  317. )
  318. sqlite>
  319. }
  320. puts {
  321. <p>The ".schema" command accomplishes the same thing as setting
  322. list mode, then entering the following query:</p>
  323. <blockquote><pre>
  324. SELECT sql FROM sqlite_master
  325. WHERE type!='meta'
  326. ORDER BY tbl_name, type DESC, name
  327. </pre></blockquote>
  328. <p>Or, if you give an argument to ".schema" because you only
  329. want the schema for a single table, the query looks like this:</p>
  330. <blockquote><pre>
  331. SELECT sql FROM sqlite_master
  332. WHERE tbl_name LIKE '%s' AND type!='meta'
  333. ORDER BY type DESC, name
  334. </pre></blockquote>
  335. <p>The <b>%s</b> in the query above is replaced by the argument
  336. to ".schema", of course. Notice that the argument to the ".schema"
  337. command appears to the right of an SQL LIKE operator. So you can
  338. use wildcards in the name of the table. For example, to get the
  339. schema for all tables whose names contain the character string
  340. "abc" you could enter:</p>}
  341. Code {
  342. sqlite> (((.schema %abc%)))
  343. }
  344. puts {
  345. <p>
  346. Along these same lines,
  347. the ".table" command also accepts a pattern as its first argument.
  348. If you give an argument to the .table command, a "%" is both
  349. appended and prepended and a LIKE clause is added to the query.
  350. This allows you to list only those tables that match a particular
  351. pattern.</p>
  352. <h2>Converting An Entire Database To An ASCII Text File</h2>
  353. <p>Use the ".dump" command to convert the entire contents of a
  354. database into a single ASCII text file. This file can be converted
  355. back into a database by piping it back into <b>sqlite</b>.</p>
  356. <p>A good way to make an archival copy of a database is this:</p>
  357. }
  358. Code {
  359. $ (((echo '.dump' | sqlite ex1 | gzip -c >ex1.dump.gz)))
  360. }
  361. puts {
  362. <p>This generates a file named <b>ex1.dump.gz</b> that contains everything
  363. you need to reconstruct the database at a later time, or on another
  364. machine. To reconstruct the database, just type:</p>
  365. }
  366. Code {
  367. $ (((zcat ex1.dump.gz | sqlite ex2)))
  368. }
  369. puts {
  370. <p>The text format used is the same as used by
  371. <a href="http://www.postgresql.org/">PostgreSQL</a>, so you
  372. can also use the .dump command to export an SQLite database
  373. into a PostgreSQL database. Like this:</p>
  374. }
  375. Code {
  376. $ (((createdb ex2)))
  377. $ (((echo '.dump' | sqlite ex1 | psql ex2)))
  378. }
  379. puts {
  380. <p>You can almost (but not quite) go the other way and export
  381. a PostgreSQL database into SQLite using the <b>pg_dump</b> utility.
  382. Unfortunately, when <b>pg_dump</b> writes the database schema information,
  383. it uses some SQL syntax that SQLite does not understand.
  384. So you cannot pipe the output of <b>pg_dump</b> directly
  385. into <b>sqlite</b>.
  386. But if you can recreate the
  387. schema separately, you can use <b>pg_dump</b> with the <b>-a</b>
  388. option to list just the data
  389. of a PostgreSQL database and import that directly into SQLite.</p>
  390. }
  391. Code {
  392. $ (((sqlite ex3 <schema.sql)))
  393. $ (((pg_dump -a ex2 | sqlite ex3)))
  394. }
  395. puts {
  396. <h2>Other Dot Commands</h2>
  397. <p>The ".explain" dot command can be used to set the output mode
  398. to "column" and to set the column widths to values that are reasonable
  399. for looking at the output of an EXPLAIN command. The EXPLAIN command
  400. is an SQLite-specific SQL extension that is useful for debugging. If any
  401. regular SQL is prefaced by EXPLAIN, then the SQL command is parsed and
  402. analyzed but is not executed. Instead, the sequence of virtual machine
  403. instructions that would have been used to execute the SQL command are
  404. returned like a query result. For example:</p>}
  405. Code {
  406. sqlite> (((.explain)))
  407. sqlite> (((explain delete from tbl1 where two<20;)))
  408. addr opcode p1 p2 p3
  409. ---- ------------ ----- ----- -------------------------------------
  410. 0 ListOpen 0 0
  411. 1 Open 0 1 tbl1
  412. 2 Next 0 9
  413. 3 Field 0 1
  414. 4 Integer 20 0
  415. 5 Ge 0 2
  416. 6 Key 0 0
  417. 7 ListWrite 0 0
  418. 8 Goto 0 2
  419. 9 Noop 0 0
  420. 10 ListRewind 0 0
  421. 11 ListRead 0 14
  422. 12 Delete 0 0
  423. 13 Goto 0 11
  424. 14 ListClose 0 0
  425. }
  426. puts {
  427. <p>The ".timeout" command sets the amount of time that the <b>sqlite</b>
  428. program will wait for locks to clear on files it is trying to access
  429. before returning an error. The default value of the timeout is zero so
  430. that an error is returned immediately if any needed database table or
  431. index is locked.</p>
  432. <p>And finally, we mention the ".exit" command which causes the
  433. sqlite program to exit.</p>
  434. <h2>Using sqlite in a shell script</h2>
  435. <p>
  436. One way to use sqlite in a shell script is to use "echo" or
  437. "cat" to generate a sequence of commands in a file, then invoke sqlite
  438. while redirecting input from the generated command file. This
  439. works fine and is appropriate in many circumstances. But as
  440. an added convenience, sqlite allows a single SQL command to be
  441. entered on the command line as a second argument after the
  442. database name. When the sqlite program is launched with two
  443. arguments, the second argument is passed to the SQLite library
  444. for processing, the query results are printed on standard output
  445. in list mode, and the program exits. This mechanism is designed
  446. to make sqlite easy to use in conjunction with programs like
  447. "awk". For example:</p>}
  448. Code {
  449. $ (((sqlite ex1 'select * from tbl1' |)))
  450. > ((( awk '{printf "<tr><td>%s<td>%s\n",$1,$2 }')))
  451. <tr><td>hello<td>10
  452. <tr><td>goodbye<td>20
  453. $
  454. }
  455. puts {
  456. <h2>Compiling the sqlite program from sources</h2>
  457. <p>
  458. The sqlite program is built automatically when you compile the
  459. sqlite library. Just get a copy of the source tree, run
  460. "configure" and then "make".</p>
  461. }
  462. puts {
  463. <p><hr /></p>
  464. <p><a href="index.html"><img src="/goback.jpg" border=0 />
  465. Back to the SQLite Home Page</a>
  466. </p>
  467. </body></html>}