| title | executeUpdate Method (java.lang.String, int[]) |
|---|---|
| description | executeUpdate Method (java.lang.String, int[]) |
| author | David-Engel |
| ms.author | davidengel |
| ms.date | 01/19/2017 |
| ms.service | sql |
| ms.subservice | connectivity |
| ms.topic | reference |
| apilocation | sqljdbc.jar |
| apiname | SQLServerStatement.executeUpdate (java.lang.String, int[]) |
| apitype | Assembly |
[!INCLUDEDriver_JDBC_Download]
Runs the given SQL statement and signals [!INCLUDEjdbcNoVersion] that the auto-generated keys that are indicated in the given array should be made available for retrieval.
public final int executeUpdate(java.lang.String sql,
int[] columnIndexes)
sql
A String that contains a SQL statement.
columnIndexes
An array of ints that indicate the column indexes of the auto-generated keys that should be made available.
An int that indicates the number of rows affected, or 0 if using a DDL statement.
This executeUpdate method is specified by the executeUpdate method in the java.sql.Statement interface.
If executing a stored procedure results in an update count that is greater than one, or that generates more than one result set, use the execute method to execute the stored procedure.
executeUpdate Method (SQLServerStatement)
SQLServerStatement Members
SQLServerStatement Class