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

run.smt.ktest.db.query.PlainProcedureBuilder.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package run.smt.ktest.db.query

import java.sql.JDBCType

interface PlainProcedureBuilder : QueryBuilder {
    /**
     * Procedure output parameters
     */
    val outParameters: MutableMap
    /**
     * Output type for procedures with one output parameter
     */
    var outputSqlType: Int?

    /**
     * Register new output parameter
     */
    fun outParameter(name: String, jdbcType: JDBCType)

    class BadMappingException(message: String) : RuntimeException(message)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy