OracleCommand.ExecuteOracleNonQuery(OracleString) Method

Definition

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

public:
 int ExecuteOracleNonQuery([Runtime::InteropServices::Out] System::Data::OracleClient::OracleString % rowid);
public int ExecuteOracleNonQuery (out System.Data.OracleClient.OracleString rowid);
member this.ExecuteOracleNonQuery : OracleString -> int
Public Function ExecuteOracleNonQuery (ByRef rowid As OracleString) As Integer

Parameters

rowid
OracleString

A base64 string representation of the actual row ID in the server.

Returns

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

Exceptions

The connection does not exist.

-or-

The connection is not open.

Remarks

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

ExecuteOracleNonQuery differs from ExecuteNonQuery in that it returns rowid as an output parameter if you are executing an INSERT, DELETE, or UPDATE statement that affects exactly one row. This allows you to uniquely identify a row in the Oracle database, which can allow you to increase performance in subsequent, related queries.

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

Applies to

See also