Executes an SQL statement against the Connection object of a .NET Framework data provider, and returns the number of rows affected.
[Visual Basic] Function ExecuteNonQuery() As Integer [C#] int ExecuteNonQuery(); [C++] int ExecuteNonQuery(); [JScript] function ExecuteNonQuery() : int;
The number of rows affected.
| Exception Type | Condition |
|---|---|
| InvalidOperationException | The connection does not exist.
-or- The connection is not open. |
You can use the ExecuteNonQuery 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 the ExecuteNonQuery does not return any rows, any output parameters or return values mapped to parameters are populated with data.
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.
[Visual Basic, C#] The following example creates an instance of the derived class, OleDbCommand, and then executes it. To accomplish this, the method is passed a string that is a SQL SELECT statement and a string to use to connect to the data source.
[Visual Basic] Public Sub CreateMyOleDbCommand(myExecuteQuery As String, _ myConnectionString As String) Dim myConnection As New OleDbConnection(myConnectionString) Dim myCommand As New OleDbCommand(myExecuteQuery, myConnection) myCommand.Connection.Open() myCommand.ExecuteNonQuery() MyConnection.Close() End Sub [C#] public void CreateMyOleDbCommand(string myExecuteQuery, string myConnectionString) { OleDbConnection myConnection = new OleDbConnection(myConnectionString); OleDbCommand myCommand = new OleDbCommand(myExecuteQuery, myConnection); myCommand.Connection.Open(); myCommand.ExecuteNonQuery(); myConnection.Close(); }
[C++, JScript] No example is available for C++ or JScript. To view a Visual Basic or C# example, click the Language Filter button
in the upper-left corner of the page.
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework - Windows CE .NET
IDbCommand Interface | IDbCommand Members | System.Data Namespace