All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.sql.kt.impl.KExecutableImpl.kt Maven / Gradle / Ivy

There is a newer version: 0.8.184
Show newest version
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)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy