run.smt.ktest.db.query.impl.ModificationBuilder.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.impl
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate
/**
* Represents query that performs some modification (thus returns nothing)
*/
class ModificationBuilder(_query: String?) : QueryBuilderImpl(_query) {
internal fun exec(jdbc: NamedParameterJdbcTemplate) = jdbc.update(query, parameterImplementation())
}