OracleRowUpdatedEventArgs Class

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

Class Inheritance

System.Object

  System.EventArgs

    System.RowUpdatedEventArgs

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

Microsoft .NET Framework Version: 1.0 or later


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 System.Object (Overloaded)


OracleRowUpdatedEventArgs Properties

The OracleRowUpdatedEventArgs properties are listed in Table 5-84.

Table 5-84 OracleRowUpdatedEventArgs Properties

Property Description

Command

Specifies the OracleCommand that is used when OracleDataAdapter.Update() is called

Errors

Inherited from System.Data.Common.RowUpdatedEventArgs

RecordsAffected

Inherited from System.Data.Common.RowUpdatedEventArgs

Row

Inherited from System.Data.Common.RowUpdatedEventArgs

StatementType

Inherited from System.Data.Common.RowUpdatedEventArgs

Status

Inherited from System.Data.Common.RowUpdatedEventArgs

TableMapping

Inherited from System.Data.Common.RowUpdatedEventArgs


OracleRowUpdatedEventArgs Public Methods

The OracleRowUpdatedEventArgs properties are listed in Table 5-85.

Table 5-85 OracleRowUpdatedEventArgs Public Methods

Public Method Description

Equals

Inherited from System.Object (Overloaded)

GetHashCode

Inherited from System.Object

GetType

Inherited from System.Object

ToString

Inherited from System.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 System.Object (Overloaded)



OracleRowUpdatedEventArgs Properties

The OracleRowUpdatedEventArgs properties are listed in Table 5-87.

Table 5-87 OracleRowUpdatedEventArgs Properties

Property Description

Command

Specifies the OracleCommand that is used when OracleDataAdapter.Update() is called

Errors

Inherited from System.Data.Common.RowUpdatedEventArgs

RecordsAffected

Inherited from System.Data.Common.RowUpdatedEventArgs

Row

Inherited from System.Data.Common.RowUpdatedEventArgs

StatementType

Inherited from System.Data.Common.RowUpdatedEventArgs

Status

Inherited from System.Data.Common.RowUpdatedEventArgs

TableMapping

Inherited from System.Data.Common.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

Public Method Description

Equals

Inherited from System.Object (Overloaded)

GetHashCode

Inherited from System.Object

GetType

Inherited from System.Object

ToString

Inherited from System.Object