Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/sqlite3/bench/backend.ts>Backend

Fast, native bindings to SQLite3 C API, using Deno FFI.
Go to Latest
interface Backend
import { type Backend } from "https://deno.land/x/sqlite3@0.4.3/bench/backend.ts";

Properties

name: string

Methods

query(sql: string): unknown[]
execute(sql: string, params: unknown[]): void
prepare(sql: string): Prepare
close(): void