Skip to main content
Module

x/sqlite3/src/statement.ts>BindValue

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

Types that can be possibly serialized as SQLite bind values

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