WindowFunctionInverseScope

Scope for use with WindowFunction.inverse.

TODO: expose getAuxDataOrNull ?

Properties

Link copied to clipboard
open override val connection: DatabaseConnection

Returns the database connection associated with the hook.

Functions

Link copied to clipboard
inline fun <C : Any> getAggregateContextOrNull(): C?

Returns the aggregate context, if any, as C.

Link copied to clipboard
open override fun setResultError(message: String, result: SqliteResultCode.Failure = SqliteResultCode.ERROR): Nothing

Causes SQLite to throw an exception with message. The default error code is SqliteResultCode.ERROR but can be overriden by supplying the appropriate error code

Link copied to clipboard
open override fun setResultErrorNoMem(): Nothing

Causes SQLite to throw an error indicating that a memory allocation failed.

Link copied to clipboard
open override fun setResultErrorTooBig(): Nothing

Causes SQLite to throw an error indicating that a string or BLOB is too long to represent.