• Home
  • Raw
  • Download

Lines Matching refs:SQLite

1 package SQLite;  package
28 public void open(String filename, int mode) throws SQLite.Exception { in open()
30 mode = SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
31 SQLite.Constants.SQLITE_OPEN_CREATE; in open()
33 mode = SQLite.Constants.SQLITE_OPEN_READONLY; in open()
38 } catch (SQLite.Exception se) { in open()
57 throws SQLite.Exception { in open()
59 mode = SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
60 SQLite.Constants.SQLITE_OPEN_CREATE; in open()
62 mode = SQLite.Constants.SQLITE_OPEN_READONLY; in open()
67 } catch (SQLite.Exception se) { in open()
87 throws SQLite.Exception { in open()
89 mode = SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
90 SQLite.Constants.SQLITE_OPEN_CREATE; in open()
92 mode = SQLite.Constants.SQLITE_OPEN_READONLY; in open()
97 } catch (SQLite.Exception se) { in open()
112 throws SQLite.Exception; in _open()
120 throws SQLite.Exception; in _open4()
129 public void open_aux_file(String filename) throws SQLite.Exception { in open_aux_file()
136 throws SQLite.Exception; in _open_aux_file()
154 public void close() throws SQLite.Exception { in close()
161 throws SQLite.Exception; in _close()
175 public void exec(String sql, SQLite.Callback cb) throws SQLite.Exception { in exec()
181 private native void _exec(String sql, SQLite.Callback cb) in _exec()
182 throws SQLite.Exception; in _exec()
207 public void exec(String sql, SQLite.Callback cb, in exec()
208 String args[]) throws SQLite.Exception { in exec()
214 private native void _exec(String sql, SQLite.Callback cb, String args[]) in _exec()
215 throws SQLite.Exception; in _exec()
261 public void busy_handler(SQLite.BusyHandler bh) { in busy_handler()
267 private native void _busy_handler(SQLite.BusyHandler bh); in _busy_handler()
294 throws SQLite.Exception { in get_table()
299 } catch (SQLite.Exception e) { in get_table()
332 public TableResult get_table(String sql) throws SQLite.Exception { in get_table()
347 throws SQLite.Exception { in get_table()
352 } catch (SQLite.Exception e) { in get_table()
387 throws SQLite.Exception { in get_table()
401 throws SQLite.Exception { in get_table()
406 } catch (SQLite.Exception e) { in get_table()
557 public void set_encoding(String enc) throws SQLite.Exception { in set_encoding()
564 throws SQLite.Exception; in _set_encoding()
606 throws SQLite.Exception { in backup()
617 throws SQLite.Exception; in _backup()
680 public Vm compile(String sql) throws SQLite.Exception { in compile()
697 public Vm compile(String sql, String args[]) throws SQLite.Exception { in compile()
713 public Stmt prepare(String sql) throws SQLite.Exception { in prepare()
732 long row, boolean rw) throws SQLite.Exception { in open_blob()
754 throws SQLite.Exception; in vm_compile()
764 throws SQLite.Exception; in vm_compile_args()
773 throws SQLite.Exception; in stmt_prepare()
787 throws SQLite.Exception; in _open_blob()
797 public void progress_handler(int n, SQLite.ProgressHandler p) { in progress_handler()
803 private native void _progress_handler(int n, SQLite.ProgressHandler p); in _progress_handler()
813 public void key(byte[] ekey) throws SQLite.Exception { in key()
827 public void key(String skey) throws SQLite.Exception { in key()
851 public void rekey(byte[] ekey) throws SQLite.Exception { in rekey()
865 public void rekey(String skey) throws SQLite.Exception { in rekey()
916 public static long long_from_julian(String s) throws SQLite.Exception { in long_from_julian()
921 throw new SQLite.Exception("not a julian date"); in long_from_julian()