AggregateOptions
Properties
Link copied to clipboard
If true
, the SQLITE_DETERMINISTIC
flag is set on the created function.
Link copied to clipboard
If true
, the SQLITE_DIRECTONLY
flag is set on the created function.
Link copied to clipboard
The function to call to get the result of the aggregation. The function receives the final state and should return the result of the aggregation.
Link copied to clipboard
If true
, integer arguments to function
are converted to BigInt
s. If false
, integer arguments are passed as JavaScript numbers.
Link copied to clipboard
If true
, function
may be invoked with any number of arguments (between zero and SQLITE_MAX_FUNCTION_ARG
). If false
, function
must be invoked with exactly function.length
arguments.