execute

suspend fun execute(vararg params: Any?): Boolean(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