FunctionOptions

sealed external interface FunctionOptions(source)

Inheritors

Properties

Link copied to clipboard
abstract var deterministic: Boolean?

If true, the SQLITE_DETERMINISTIC flag is set on the created function.

Link copied to clipboard
abstract var directOnly: Boolean?

If true, the SQLITE_DIRECTONLY flag is set on the created function.

Link copied to clipboard

If true, integer arguments to function are converted to BigInts. If false, integer arguments are passed as JavaScript numbers.

Link copied to clipboard
abstract var varargs: Boolean?

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.