Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias SqlFunctionArgument
import { type SqlFunctionArgument } from "https://deno.land/x/sqlite@v3.7.3/src/function.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