ExecutableQuery

abstract class ExecutableQuery<out RowType : Any>(val mapper: (SqlCursor) -> RowType)

Inheritors

Constructors

Link copied to clipboard
constructor(mapper: (SqlCursor) -> RowType)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
abstract fun <R> execute(mapper: (SqlCursor) -> QueryResult<R>): QueryResult<R>

Execute the underlying statement. The resulting cursor is passed to the given block.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard