KTypedRootQuery

interface KTypedRootQuery<R> : KExecutable<List<R>>

Functions

Link copied to clipboard
abstract fun execute(con: Connection? = null): List<R>
Link copied to clipboard
open fun fetchOne(con: Connection? = null): R
Link copied to clipboard
open fun fetchOneOrNull(con: Connection? = null): R?
Link copied to clipboard
abstract fun forEach(con: Connection? = null, batchSize: Int = 0, block: (R) -> Unit)
Link copied to clipboard
abstract infix fun intersect(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
abstract infix operator fun minus(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
abstract infix fun union(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
abstract infix fun unionAll(other: KTypedRootQuery<R>): KTypedRootQuery<R>

Inheritors

Link copied to clipboard