Lines Matching refs:null
17 this.rs = null;
18 this.batch = null;
87 SQLite.TableResult tr = null;
88 if (rs != null) {
90 rs = null;
93 if (conn == null || conn.db == null) {
101 conn.db.exec("BEGIN TRANSACTION", null);
104 if (args == null) {
106 conn.db.exec(sql, null);
112 conn.db.exec(sql, null, args);
124 conn.db.exec("ROLLBACK", null);
145 if (!updonly && tr == null) {
148 if (!updonly && tr != null) {
155 return executeQuery(sql, null, false);
159 return executeQuery(sql) != null;
163 if (conn == null || conn.db == null) {
177 if (batch == null) {
184 if (batch == null) {
207 if (batch != null) {
209 batch = null;
215 conn = null;
219 executeQuery(sql, null, true);
228 if (rs != null) {
230 rs = null;
240 return null;
304 return conn == null; // android-changed: pretty sure this is correct, since it matches what's done in close()