nbcp.myoql.db.sql.component.DefaultPreparedStatementCallback.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmyoql Show documentation
Show all versions of ktmyoql Show documentation
kotlin orm -- mysql,mongo , just like ktorm
The newest version!
package nbcp.myoql.db.sql.component
import org.springframework.jdbc.core.PreparedStatementCallback
import java.sql.PreparedStatement
class DefaultPreparedStatementCallback(): PreparedStatementCallback {
override fun doInPreparedStatement(ps: PreparedStatement): Boolean {
return ps.execute()
}
}