interface FunctionOptions
Properties #
#deterministic: boolean | undefined
optional
If true
, the SQLITE_DETERMINISTIC
flag is
set on the created function.
#directOnly: boolean | undefined
optional
If true
, the SQLITE_DIRECTONLY
flag is set on
the created function.
#useBigIntArguments: boolean | undefined
optional
If true
, integer arguments to function
are converted to BigInt
s. If false
, integer arguments are passed as
JavaScript numbers.