* 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)
| 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`. |
no outgoing calls
no test coverage detected