org.babyfish.jimmer.sql.kt.impl.KExecutableImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql-kotlin Show documentation
Show all versions of jimmer-sql-kotlin Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.kt.impl
import org.babyfish.jimmer.sql.ast.Executable
import org.babyfish.jimmer.sql.kt.ast.KExecutable
import java.sql.Connection
internal class KExecutableImpl(
private val javaExecutable: Executable
) : KExecutable {
override fun execute(con: Connection?): R =
javaExecutable.execute(con)
}