typescriptimport { Database } from "bun:sqlite";
{
using db = new Database(":memory:");
const result = db.query("SELECT 1 as id").get();
console.info(result); // => { id: 1 }
}
import
がサポートされているtypescriptimport db from "./database.sqlite" with { "type": "sqlite" };