KSqlClient

interface KSqlClient

Functions

Link copied to clipboard
@NewChain
abstract fun caches(block: KCacheDisableDsl.() -> Unit): KSqlClient
Link copied to clipboard
abstract fun <E : Any> createDelete(entityType: KClass<E>, block: KMutableDelete<E>.() -> Unit): KExecutable<Int>
Link copied to clipboard
open fun <E : Any, R> createQuery(entityType: KClass<E>, block: KMutableRootQuery<E>.() -> KConfigurableRootQuery<E, R>): KConfigurableRootQuery<E, R>
Link copied to clipboard
abstract fun <E : Any> createUpdate(entityType: KClass<E>, block: KMutableUpdate<E>.() -> Unit): KExecutable<Int>
Link copied to clipboard
@NewChain
abstract fun disableSlaveConnectionManager(): KSqlClient
Link copied to clipboard
abstract fun <R> executeNativeSql(master: Boolean = false, block: (Connection) -> R): R
Link copied to clipboard
abstract fun getAssociations(prop: KProperty1<*, *>): KAssociations
Link copied to clipboard
abstract fun <S : Any, T : Any> getListLoader(prop: KProperty1<S, List<T>>): KListLoader<S, T>
Link copied to clipboard
abstract fun <S : Any, T : Any> getReferenceLoader(prop: KProperty1<S, T?>): KReferenceLoader<S, T>
Link copied to clipboard
abstract fun <S : Any, V : Any> getValueLoader(prop: KProperty1<S, V>): KValueLoader<S, V>

Properties

Link copied to clipboard
abstract val caches: KCaches
Link copied to clipboard
abstract val entities: KEntities
Link copied to clipboard
abstract val javaClient: JSqlClient
Link copied to clipboard
abstract val queries: KQueries
Link copied to clipboard
abstract val triggers: KTriggers