FunctionOptions

sealed external interface FunctionOptions(source)

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 can accept a variable number of arguments. If false, function must be invoked with exactly function.length arguments.