Home | History | Annotate | Download | only in JDBC2z

Lines Matching refs:dbx

109 	DatabaseX dbx = null;
111 dbx = new DatabaseX();
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY :
115 dbx.set_encoding(enc);
122 dbx.exec("PRAGMA short_column_names = off;", null);
123 dbx.exec("PRAGMA full_column_names = on;", null);
124 dbx.exec("PRAGMA empty_result_callbacks = on;", null);
126 dbx.exec("PRAGMA show_datatypes = on;", null);
129 if (dbx.last_error() != SQLite.Constants.SQLITE_BUSY ||
130 !busy0(dbx, ++loop)) {
132 dbx.close();
141 return dbx;
342 DatabaseX dbx = null;
344 dbx = open(ro);
346 db = dbx;
347 dbx = null;
352 if (dbx != null) {
354 dbx.close();