SqlBatchBase

abstract class SqlBatchBase : InterpolatorBatchingWithWrapper<Param<*>>

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open override fun <A : Any> interpolate(parts: () -> List<String>, params: (A) -> List<Param<*>>): SqlBatchCall<A>
Link copied to clipboard
open operator override fun <A : Any> invoke(create: (A) -> String): SqlBatchCall<A>
Link copied to clipboard
abstract fun wrap(value: Boolean?): Param<*>
abstract fun wrap(value: Byte?): Param<*>
abstract fun wrap(value: Double?): Param<*>
abstract fun wrap(value: Float?): Param<*>
abstract fun wrap(value: Int?): Param<*>
abstract fun wrap(value: Long?): Param<*>
abstract fun wrap(value: Short?): Param<*>
abstract fun wrap(value: String?): Param<*>
abstract fun <V> wrap(value: V, cls: KClass<*>): Param<*>