SqliteDatabase

View Source

Summary

Synchronous SQLite database client accepted by the sqlite adapter.

This matches the shared surface of Node's node:sqlite DatabaseSync, Bun's bun:sqlite Database, and better-sqlite3 database instances.

Signature

interface SqliteDatabase {
  exec(sql: string): unknown;
  prepare(sql: string): SqliteStatement;
}