Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 2.27 KB

update-data-inside-data-source.md

File metadata and controls

40 lines (29 loc) · 2.27 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic dev_langs
Updating data in a data source
Describes how to execute commands or stored procedures that modify data in a database.
David-Engel
v-davidengel
v-chmalh
11/25/2020
sql
connectivity
conceptual
csharp

Updating data in a data source

[!INCLUDEappliesto-netfx-netcore-netst-md]

[!INCLUDEDriver_ADONET_Download]

SQL statements that modify data (such as INSERT, UPDATE, or DELETE) do not return rows. Similarly, many stored procedures perform an action but do not return rows. To execute commands that do not return rows, create a Command object with the appropriate SQL command and a Connection, including any required Parameters. Execute the command with the xref:Microsoft.Data.SqlClient.SqlCommand.ExecuteNonQuery%2A method of the xref:Microsoft.Data.SqlClient.SqlCommand object.

Note

The ExecuteNonQuery method returns an integer that represents the number of rows affected by the statement or stored procedure that was executed. If multiple statements are executed, the value returned is the sum of the records affected by all of the statements executed.

Example

The following code example executes an INSERT statement to insert a record into a database using ExecuteNonQuery.

[!code-csharpDataWorks SqlCommand.ExecuteNonQuery#1]

The following code example executes the stored procedure created by the sample code in Performing Catalog Operations. No rows are returned by the stored procedure, so the ExecuteNonQuery method is used, but the stored procedure does receive an input parameter and returns an output parameter and a return value.

[!code-csharpDataWorks SqlCommand.ExecuteNonQuery#2]

See also