OracleRowUpdatedEventArgs Class

The OracleRowUpdatedEventArgs class provides event data for the OracleDataAdapter.RowUpdated event.

Class Inheritance

Object

  EventArgs

    RowUpdatedEventArgs

      OracleRowUpdatedEventArgs

Declaration

// C#
public sealed class OracleRowUpdatedEventArgs : RowUpdatedEventArgs

Thread Safety

All public static methods are thread-safe, although instance methods do not guarantee thread safety.

Example

The example for the RowUpdated event shows how to use OracleRowUpdatedEventArgs. See RowUpdated event "Example".

Requirements

Namespace: Oracle.DataAccess.Client

Assembly: Oracle.DataAccess.dll


OracleRowUpdatedEventArgs Members

OracleRowUpdatedEventArgs members are listed in the following tables:

OracleRowUpdatedEventArgs Constructors

OracleRowUpdatedEventArgs constructors are listed in Table 5-82.

Table 5-82 OracleRowUpdatedEventArgs Constructors

Constructor Description
OracleRowUpdatedEventArgs Constructor Instantiates a new instance of OracleRowUpdatedEventArgs class

OracleRowUpdatedEventArgs Static Methods

The OracleRowUpdatedEventArgs static method is listed in Table 5-83.

Table 5-83 OracleRowUpdatedEventArgs Static Method

Method Description
Equals Inherited from Object (Overloaded)

OracleRowUpdatedEventArgs Properties

The OracleRowUpdatedEventArgs properties are listed in Table 5-84.

Table 5-84 OracleRowUpdatedEventArgs Properties

Name Description
Command Specifies the OracleCommand that is used when OracleDataAdapter.Update() is called
Errors Inherited from RowUpdatedEventArgs
RecordsAffected Inherited from RowUpdatedEventArgs
Row Inherited from RowUpdatedEventArgs
StatementType Inherited from RowUpdatedEventArgs
Status Inherited from RowUpdatedEventArgs
TableMapping Inherited from RowUpdatedEventArgs

OracleRowUpdatedEventArgs Public Methods

The OracleRowUpdatedEventArgs properties are listed in Table 5-85.

Table 5-85 OracleRowUpdatedEventArgs Public Methods

Name Description
Equals Inherited from Object (Overloaded)
GetHashCode Inherited from Object
GetType Inherited from Object
ToString Inherited from Object


OracleRowUpdatedEventArgs Constructor

The OracleRowUpdatedEventArgs constructor creates a new OracleRowUpdatedEventArgs instance.

Declaration

// C#
public OracleRowUpdatedEventArgs(DataRow row,IDbCommand command, 
    StatementType statementType, DataTableMapping tableMapping);

Parameters

  • row

    The DataRow sent for Update.

  • command

    The IDbCommand executed during the Update.

  • statementType

    The StatementType Enumeration value indicating the type of SQL statement executed.

  • tableMapping

    The DataTableMapping used for the Update.


OracleRowUpdatedEventArgs Static Methods

The OracleRowUpdatedEventArgs static method is listed in Table 5-86.

Table 5-86 OracleRowUpdatedEventArgs Static Method

Method Description
Equals Inherited from Object (Overloaded)


OracleRowUpdatedEventArgs Properties

The OracleRowUpdatedEventArgs properties are listed in Table 5-87.

Table 5-87 OracleRowUpdatedEventArgs Properties

Name Description
Command Specifies the OracleCommand that is used when OracleDataAdapter.Update() is called
Errors Inherited from RowUpdatedEventArgs
RecordsAffected Inherited from RowUpdatedEventArgs
Row Inherited from RowUpdatedEventArgs
StatementType Inherited from RowUpdatedEventArgs
Status Inherited from RowUpdatedEventArgs
TableMapping Inherited from RowUpdatedEventArgs

Command

This property specifies the OracleCommand that is used when OracleDataAdapter.Update() is called.

Declaration

// C#
public new OracleCommand Command {get;}

Property Value

The OracleCommand executed when Update is called.


OracleRowUpdatedEventArgs Public Methods

The OracleRowUpdatedEventArgs properties are listed in Table 5-88.

Table 5-88 OracleRowUpdatedEventArgs Public Methods

Name Description
Equals Inherited from Object (Overloaded)
GetHashCode Inherited from Object
GetType Inherited from Object
ToString Inherited from Object