Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 2.53 KB

File metadata and controls

37 lines (31 loc) · 2.53 KB
title executeUpdate Method (SQLServerStatement) | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
apiname
SQLServerStatement.executeUpdate
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid 10ae662a-ce3c-4b24-875c-5c2df319d93b
author David-Engel
ms.author v-daenge

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