Lines Matching refs:readOnly
24 exec(queries, readOnly, callback) { argument
28 … ExpoSQLite.exec(this._name, queries.map(_serializeQuery), readOnly).then((nativeResultSets) => {
40 execRawQuery(queries, readOnly, callback) { argument
42 return this.exec(queries, readOnly, callback);
44 …ExpoSQLite.execRawQuery(this._name, queries.map(_serializeQuery), readOnly).then((nativeResultSets…
53 async execAsync(queries, readOnly) { argument
57 …const nativeResultSets = await ExpoSQLite.exec(this._name, queries.map(_serializeQuery), readOnly);
100 async transactionAsync(asyncCallback, readOnly = false) { argument
103 const transaction = new ExpoSQLTransactionAsync(this, readOnly);
185 readOnly; field in ExpoSQLTransactionAsync
186 constructor(db, readOnly) { argument
188 this.readOnly = readOnly;
191 …nst resultSets = await this.db.execAsync([{ sql: sqlStatement, args: args ?? [] }], this.readOnly);