Home | History | Annotate | Download | only in JDBC2z

Lines Matching full:sqlite

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