Skip to main content
Module

x/sqlite3/mod.ts>BindValue

The fastest and correct module for SQLite3 in Deno.
Latest
type alias BindValue
import { type BindValue } from "https://deno.land/x/sqlite3@0.11.1/mod.ts";

Types that can be possibly serialized as SQLite bind values

definition:
| number
| string
| symbol
| bigint
| boolean
| null
| undefined
| Date
| Uint8Array
| { [key: string]: BindValue; }