(...p: unknown[])
| 23 | return this.stmt.get(...p) as Record<string, unknown> | undefined |
| 24 | } |
| 25 | all(...p: unknown[]) { |
| 26 | return this.stmt.all(...p) as Record<string, unknown>[] |
| 27 | } |
| 28 | run(...p: unknown[]): RunResult { |
| 29 | const r = this.stmt.run(...p) |
| 30 | return { changes: r.changes, lastInsertRowid: r.lastInsertRowid } |