Home | History | Annotate | Download | only in SQLite

Lines Matching defs:Shell

8  * SQLite command line shell. This is a partial reimplementaion
9 * of sqlite/src/shell.c and can be invoked by:<P>
12 * java SQLite.Shell [OPTIONS] database [SHELLCMD]
18 public class Shell implements Callback {
40 public Shell(PrintWriter pw, PrintWriter err) {
45 public Shell(PrintStream ps, PrintStream errs) {
51 Shell s = new Shell(this.pw, this.err);
159 tableName = Shell.sql_quote(str);
174 case Shell.MODE_Line:
186 case Shell.MODE_Column:
216 case Shell.MODE_Semi:
217 case Shell.MODE_List:
229 if (mode == Shell.MODE_Semi) {
351 mode = Shell.MODE_Line;
353 mode = Shell.MODE_Column;
355 mode = Shell.MODE_List;
357 mode = Shell.MODE_Html;
359 mode = Shell.MODE_Insert;
517 Shell s = new Shell(System.out, System.err);
518 s.mode = Shell.MODE_List;
525 s.mode = Shell.MODE_Html;
527 s.mode = Shell.MODE_List;
529 s.mode = Shell.MODE_Line;
583 Shell s;
585 DBDump(Shell s, String tables[]) {
630 Shell s2 = (Shell) s.clone();
631 s2.mode = Shell.MODE_Insert;
648 Shell.sql_quote_dbl(col) + ")");
653 s2.mode = Shell.MODE_Insert2;