(sql: string, params?: SqliteValue[])
| 143 | ) {} |
| 144 | |
| 145 | exec(sql: string, params?: SqliteValue[]): ReturnType<SqlDatabase["exec"]> { |
| 146 | return this.database.exec(sql, params); |
| 147 | } |
| 148 | |
| 149 | persist(): void { |
| 150 | // better-sqlite3 writes mutations directly to the database/WAL. Keep this |
no outgoing calls
no test coverage detected