.NET Framework Class Library
OdbcCommand.ExecuteNonQuery Method

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

Namespace: System.Data.Odbc
Assembly: System.Data (in system.data.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Function ExecuteNonQuery As Integer
Visual Basic (Usage)
Dim instance As OdbcCommand
Dim returnValue As Integer

returnValue = instance.ExecuteNonQuery
C#
public override int ExecuteNonQuery ()
C++
public:
virtual int ExecuteNonQuery () override
J#
public int ExecuteNonQuery ()
JScript
public override function ExecuteNonQuery () : int

Return Value

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.
Exceptions

Exception typeCondition

InvalidOperationException

The connection does not exist.

-or-

The connection is not open.

Remarks

You can use 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.

You can also use ExecuteNonQuery to execute multiple SQL statements if the underlying ODBC driver supports this functionality. In this case, the return value is the number of rows affected by all statements in the command.

Although ExecuteNonQuery returns no 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. If a rollback occurs, the return value is also -1.

Platforms

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0, 1.1
See Also

Tags :


Page view tracker