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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy