Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 2.45 KB

executeupdate-method-sqlserverstatement.md

File metadata and controls

32 lines (26 loc) · 2.45 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic apilocation apiname apitype
executeUpdate Method (SQLServerStatement)
executeUpdate Method (SQLServerStatement)
David-Engel
v-davidengel
01/19/2017
sql
connectivity
reference
sqljdbc.jar
SQLServerStatement.executeUpdate
Assembly

executeUpdate Method (SQLServerStatement)

[!INCLUDEDriver_JDBC_Download]

Runs the given SQL statement, which can be an INSERT, UPDATE, or DELETE statement; or an SQL statement that returns nothing, such as an SQL DDL statement. Beginning in [!INCLUDEmsCoName] [!INCLUDEssNoVersion] JDBC Driver 3.0, executeUpdate will return the correct number of rows updated in a MERGE operation.

Overload List

Name Description
executeUpdate (java.lang.String) Runs the given SQL statement, which can be an INSERT, UPDATE, DELETE, or MERGE statement; or an SQL statement that returns nothing, such as an SQL DDL statement.
executeUpdate (java.lang.String, int) Runs the given SQL statement and signals the [!INCLUDEjdbcNoVersion] with the given flag about whether the auto-generated keys produced by this SQLServerStatement object should be made available for retrieval.
executeUpdate (java.lang.String, int[]) Runs the given SQL statement and signals the JDBC driver that the auto-generated keys that are indicated in the given array should be made available for retrieval.
executeUpdate (java.lang.String, java.lang.String[]) Runs the given SQL statement and signals the JDBC driver that the auto-generated keys that are indicated in the given array should be made available for retrieval.

See Also

SQLServerStatement Members
SQLServerStatement Class