Skip to main content
Go to Latest
type alias SqlFunctionArgument
import { type SqlFunctionArgument } from "https://deno.land/x/sqlite@v3.7.2/mod.ts";

Possible arguments a user-defined SQL function might receive.

These correspond to the SQL types INTEGER (number, bigint, or boolean), REAL (number), TEXT (string), BLOB (Uint8Array), and NULL (null).

See QueryParameter for more details on how JS values are converted to and from SQL values.

definition:
| boolean
| number
| bigint
| string
| null
| Uint8Array