MCPcopy Create free account
hub / github.com/expo/expo / execAsync

Method execAsync

packages/expo-sqlite/src/SQLiteDatabase.ts:57–59  ·  view source on GitHub ↗

* Execute all SQL queries in the supplied string. * > Note: The queries are not escaped for you! Be careful when constructing your queries. * * @param source A string containing all the SQL queries.

(source: string)

Source from the content-addressed store, hash-verified

55 * @param source A string containing all the SQL queries.
56 */
57 public execAsync(source: string): Promise<void> {
58 return this.nativeDatabase.execAsync(source);
59 }
60
61 /**
62 * [Serialize the database](https://sqlite.org/c3ref/serialize.html) as `Uint8Array`.

Calls

no outgoing calls

Tested by

no test coverage detected