run.smt.ktest.db.query.ddl.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 org.springframework.jdbc.core.JdbcTemplate
import javax.sql.DataSource
fun DataSource.ddl(sql: String) {
JdbcTemplate(this).execute(sql)
}