If true, the SQLITE_DETERMINISTIC flag is set on the created function.
interface
sqlite.FunctionOptions
interface FunctionOptions
- useBigIntArguments?: boolean
If
true, integer arguments tofunctionare converted toBigInts. Iffalse, integer arguments are passed as JavaScript numbers. - varargs?: boolean
If
true,functionmay be invoked with any number of arguments (between zero andSQLITE_MAX_FUNCTION_ARG). Iffalse,functionmust be invoked with exactlyfunction.lengtharguments.