22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
-
+
|
Valid dot commands are:
* <tt>.b0</tt> - Disable bail mode. SQL errors are ignored, but will prevent the current statement from executing, and any other statements on the same line.
* <tt>.b1</tt> - Enable bail mode (default). Any SQL errors are fatal.
* <tt>.f</tt> - Release memory and flush the SQLite cache.
* <tt>.i</tt> - Tell you the filename of the user cache database.
* <tt>.q</tt> - Quit.
* <tt>.u</tt> - Flush the user cache, causing the .level and .solution files to be rewritten if there are any pending changes.
* <tt>.u</tt> - Flush the user cache, causing the .level and .solution files to be rewritten if there are any pending changes. Should not be used while a transaction is active.
* <tt>.x0</tt> - Disable the LOAD_EXTENSION() function (default).
* <tt>.x1</tt> - Enable the LOAD_EXTENSION() function.
It also quits on EOF, but will complain if EOF occurs in the middle of a SQL statement.
Any result rows of SQL statements are written to stdout, with a vertical bar between columns and line breaks after each row.
|