executeUpdate

fun executeUpdate(vararg params: Any?): Int(source)

Executes the SQL statement in this PreparedStatement object with the supplied parameters.

The parameters are set in the order they are passed in, supported types are implementation-specific, see PreparedStatement.setObject and its implementation by your JDBC driver.

See also


open override fun executeUpdate(sql: String?): Int(source)
open override fun executeUpdate(sql: String?, columnIndexes: IntArray?): Int(source)
open override fun executeUpdate(sql: String?, autoGeneratedKeys: Int): Int(source)
open override fun executeUpdate(sql: String?, columnNames: Array<out String>?): Int(source)

Deprecated (with error)

This is never usable as this is a prepared statement