1 |
jpp |
1.1 |
diff -up sqlite-src-3071602/sqlite3.1.broken sqlite-src-3071602/sqlite3.1 |
2 |
|
|
--- sqlite-src-3071602/sqlite3.1.broken 2013-05-16 14:30:05.985387506 +0200 |
3 |
|
|
+++ sqlite-src-3071602/sqlite3.1 2013-05-16 14:43:37.434861289 +0200 |
4 |
|
|
@@ -147,7 +147,7 @@ sqlite> |
5 |
|
|
.B sqlite3 |
6 |
|
|
has the following options: |
7 |
|
|
.TP |
8 |
|
|
-.BI \-init\ file |
9 |
|
|
+.BI \-init\ file |
10 |
|
|
Read and execute commands from |
11 |
|
|
.I file |
12 |
|
|
, which can contain a mix of SQL statements and meta-commands. |
13 |
|
|
@@ -158,11 +158,28 @@ Print commands before execution. |
14 |
|
|
.B \-[no]header |
15 |
|
|
Turn headers on or off. |
16 |
|
|
.TP |
17 |
|
|
+.B \-bail |
18 |
|
|
+Stop after hitting an error. |
19 |
|
|
+.TP |
20 |
|
|
+.B \-interactive |
21 |
|
|
+Force interactive I/O. |
22 |
|
|
+.TP |
23 |
|
|
+.B \-batch |
24 |
|
|
+Force batch I/O. |
25 |
|
|
+.TP |
26 |
|
|
.B \-column |
27 |
|
|
Query results will be displayed in a table like form, using |
28 |
|
|
whitespace characters to separate the columns and align the |
29 |
|
|
output. |
30 |
|
|
.TP |
31 |
|
|
+.BI \-cmd\ command |
32 |
|
|
+Run |
33 |
|
|
+.I command |
34 |
|
|
+before reading stdin. |
35 |
|
|
+.TP |
36 |
|
|
+.B \-csv |
37 |
|
|
+Set output mode to CSV (comma separated values). |
38 |
|
|
+.TP |
39 |
|
|
.B \-html |
40 |
|
|
Query results will be output as simple HTML tables. |
41 |
|
|
.TP |
42 |
|
|
@@ -182,9 +199,17 @@ Set output field separator. Default is |
43 |
|
|
Set string used to represent NULL values. Default is '' |
44 |
|
|
(empty string). |
45 |
|
|
.TP |
46 |
|
|
+.B \-stats |
47 |
|
|
+Print memory stats before each finalize. |
48 |
|
|
+.TP |
49 |
|
|
.B \-version |
50 |
|
|
Show SQLite version. |
51 |
|
|
.TP |
52 |
|
|
+.BI \-vfs\ name |
53 |
|
|
+Use |
54 |
|
|
+.I name |
55 |
|
|
+as the default VFS. |
56 |
|
|
+.TP |
57 |
|
|
.B \-help |
58 |
|
|
Show help on options and exit. |
59 |
|
|
|