Lines Matching refs:db
240 callback?: (db: SQLiteDatabase) => void
245 const db = _openExpoSQLiteDatabase(name, version, description, size, callback); constant
246 db.exec = db._db.exec.bind(db._db);
247 db.execRawQuery = db._db.execRawQuery.bind(db._db);
248 db.execAsync = db._db.execAsync.bind(db._db);
249 db.closeAsync = db._db.closeAsync.bind(db._db);
250 db.closeSync = db._db.closeSync.bind(db._db);
251 db.onDatabaseChange = db._db.onDatabaseChange.bind(db._db);
252 db.deleteAsync = db._db.deleteAsync.bind(db._db);
253 db.transactionAsync = db._db.transactionAsync.bind(db._db);
254 return db;
263 private readonly db: SQLiteDatabase,
268 const resultSets = await this.db.execAsync(