If true
, the SQLITE_DETERMINISTIC
flag is set on the created function.
interface
sqlite.FunctionOptions
interface FunctionOptions
- useBigIntArguments?: boolean
If
true
, integer arguments tofunction
are converted toBigInt
s. Iffalse
, integer arguments are passed as JavaScript numbers. - varargs?: boolean
If
true
,function
may be invoked with any number of arguments (between zero andSQLITE_MAX_FUNCTION_ARG
). Iffalse
,function
must be invoked with exactlyfunction.length
arguments.