See Also

DbCommandBase Class  | DbCommandBase Members

Language

Visual Basic

C#

Show All

See AlsoLanguagesDevart.DataSend comments on this topic.

ExecuteNonQuery Method

Devart.Common Namespace > DbCommandBase Class : ExecuteNonQuery Method

Executes SQL statement against the Connection and returns the number of rows affected.

[Visual Basic]
Overrides Public Function ExecuteNonQuery() As Integer
[C#]
public override int ExecuteNonQuery();

Return Type

For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1.

Remarks

You can use ExecuteNonQuery method to perform catalog operations (for example, querying the structure of a database or creating database objects such as tables); or to change the data in a database, without using a DataSet, by executing UPDATE, INSERT, or DELETE statements.

Although ExecuteNonQuery does not return any rows, any output parameters or return values mapped to parameters are populated with data.

When executing stored procedures you have to create DbParameter with Direction set to ReturnValue or set ParameterCheck property to true.

See Also

DbCommandBase Class  | DbCommandBase Members

 

 


© 2002 - 2013 Devart. All Rights Reserved.