Execute a SQL query without returning any results.
This does not cache the query, so if you want to run a query multiple times, you should use prepare instead.
Under the hood, this calls sqlite3_prepare_v3 followed by sqlite3_step and sqlite3_finalize.
The following types can be used when binding parameters:
| JavaScript type | SQLite type | 
|---|---|
| string | TEXT | 
| number | INTEGERorDECIMAL | 
| boolean | INTEGER(1 or 0) | 
| Uint8Array | BLOB | 
| Buffer | BLOB | 
| bigint | INTEGER | 
| null | NULL |