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

run.smt.ktest.db.query.impl.ModificationBuilder.kt Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy