run.smt.ktest.db.query.PlainProcedureBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktest-db Show documentation
Show all versions of ktest-db Show documentation
Database intergration for kTest
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)
}