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);
160 tableName = Shell.sql_quote_dbl(str);
162 tableName = Shell.sql_quote(str);
178 case Shell.MODE_Line:
190 case Shell.MODE_Column:
220 case Shell.MODE_Semi:
221 case Shell.MODE_List:
233 if (mode == Shell.MODE_Semi) {
355 mode = Shell.MODE_Line;
357 mode = Shell.MODE_Column;
359 mode = Shell.MODE_List;
361 mode = Shell.MODE_Html;
363 mode = Shell.MODE_Insert;
531 Shell s = new Shell(System.out, System.err);
532 s.mode = Shell.MODE_List;
539 s.mode = Shell.MODE_Html;
541 s.mode = Shell.MODE_List;
543 s.mode = Shell.MODE_Line;
608 Shell s;
610 DBDump(Shell s, String tables[]) {
655 Shell s2 = (Shell) s.clone();
656 s2.mode = Shell.MODE_Insert;
673 Shell.sql_quote_dbl(col) + ")");
678 s2.mode = Shell.MODE_Insert2;