Home
last modified time | relevance | path

Searched refs:executeSqlAsync (Results 1 – 10 of 10) sorted by relevance

/expo/apps/test-suite/tests/
H A DSQLite.ts626 await tx.executeSqlAsync('DROP TABLE IF EXISTS Users;', []);
627 await tx.executeSqlAsync(
663 await tx.executeSqlAsync('DROP TABLE IF EXISTS foo;', []);
665 await tx.executeSqlAsync('select crsql_as_crr("foo");', []);
681 await tx.executeSqlAsync('DROP TABLE IF EXISTS Users;', []);
682 await tx.executeSqlAsync(
727 await tx.executeSqlAsync('DROP TABLE IF EXISTS Users;', []);
728 await tx.executeSqlAsync(
747 await tx.executeSqlAsync(null);
762 await tx.executeSqlAsync(
[all …]
/expo/packages/expo-sqlite/build/
H A DSQLite.d.ts87 executeSqlAsync(sqlStatement: string, args?: (number | string)[]): Promise<ResultSet>;
H A DSQLite.types.d.ts128 executeSqlAsync(sqlStatement: string, args?: (number | string)[]): Promise<ResultSet>; method
H A DSQLite.js190 async executeSqlAsync(sqlStatement, args) { method in ExpoSQLTransactionAsync
H A DSQLite.types.js.map1 …nsactionAsync {\n /** Executes a SQL statement in async mode. */\n executeSqlAsync(sqlStatement:…
H A DSQLite.js.map1 …Database,\n private readonly readOnly: boolean\n ) {}\n\n async executeSqlAsync(sqlStatement:…
/expo/packages/expo-sqlite/src/
H A DSQLite.types.ts188 executeSqlAsync(sqlStatement: string, args?: (number | string)[]): Promise<ResultSet>; method
H A DSQLite.ts267 async executeSqlAsync(sqlStatement: string, args?: (number | string)[]): Promise<ResultSet> {
/expo/docs/pages/versions/unversioned/sdk/
H A Dsqlite.mdx85 const result = await tx.executeSqlAsync('SELECT COUNT(*) FROM USERS', []);
/expo/packages/expo-sqlite/
H A DCHANGELOG.md40 - Fixed the return type from `executeSqlAsync` to only successful `ResultSet`. ([#24336](https://gi…