• Home
  • Raw
  • Download

Lines Matching refs:SQLite

1 package SQLite.JDBC2z;
7 implements java.sql.Connection, SQLite.BusyHandler {
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY : in open()
113 (SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs); in open()
116 } catch (SQLite.Exception e) { in open()
125 if (SQLite.Database.version().compareTo("2.6.0") >= 0) { in open()
128 } catch (SQLite.Exception e) { in open()
129 if (dbx.last_error() != SQLite.Constants.SQLITE_BUSY || in open()
133 } catch (SQLite.Exception ee) { in open()
163 } catch (SQLite.Exception se) { in JDBCConnection()
171 } catch (SQLite.Exception ee) { in JDBCConnection()
181 public SQLite.Database getSQLiteDatabase() { in getSQLiteDatabase()
182 return (SQLite.Database) db; in getSQLiteDatabase()
224 } catch (SQLite.Exception e) { in close()
251 } catch (SQLite.Exception e) { in commit()
316 } catch (SQLite.Exception e) { in rollback()
325 } catch (SQLite.Exception e) { in setAutoCommit()
351 } catch (SQLite.Exception ee) { in setReadOnly()
355 } catch (SQLite.Exception eee) { in setReadOnly()
364 if (db.is3() && SQLite.JDBCDriver.sharedCache) { in setTransactionIsolation()
521 class DatabaseX extends SQLite.Database {
538 public void exec(String sql, SQLite.Callback cb) in exec()
539 throws SQLite.Exception { in exec()
546 public void exec(String sql, SQLite.Callback cb, String args[]) in exec()
547 throws SQLite.Exception { in exec()
554 public SQLite.TableResult get_table(String sql, String args[]) in get_table()
555 throws SQLite.Exception { in get_table()
556 SQLite.TableResult ret = super.get_table(sql, args); in get_table()
563 public void get_table(String sql, String args[], SQLite.TableResult tbl) in get_table()
564 throws SQLite.Exception { in get_table()