| Oracle® Data Provider for .NET Developer's Guide 11g Release 2 (11.2.0.3) Part Number E23174-02 | 
 | 
| 
 | PDF · Mobi · ePub | 
The OracleRowUpdatedEventArgs class provides event data for the OracleDataAdapter.RowUpdated event.
System.Object
  System.EventArgs
    System.RowUpdatedEventArgs
      System.OracleRowUpdatedEventArgs
// C# public sealed class OracleRowUpdatedEventArgs : RowUpdatedEventArgs
All public static methods are thread-safe, although instance methods do not guarantee thread safety.
The example for the RowUpdated event shows how to use OracleRowUpdatedEventArgs. See RowUpdated event "Example".
Namespace: Oracle.DataAccess.Client
Assembly: Oracle.DataAccess.dll
ODP.NET Version: ODP.NET for .NET Framework 2.0 or ODP.NET for .NET Framework 4
See Also:
OracleRowUpdatedEventArgs members are listed in the following tables.
OracleRowUpdatedEventArgs Constructors
OracleRowUpdatedEventArgs constructors are listed in Table 5-101.
Table 5-101 OracleRowUpdatedEventArgs Constructors
| Constructor | Description | 
|---|---|
| Instantiates a new instance of  | 
OracleRowUpdatedEventArgs Static Methods
The OracleRowUpdatedEventArgs static method is listed in Table 5-102.
Table 5-102 OracleRowUpdatedEventArgs Static Method
| Method | Description | 
|---|---|
| 
 | Inherited from  | 
OracleRowUpdatedEventArgs Properties
The OracleRowUpdatedEventArgs properties are listed in Table 5-103.
Table 5-103 OracleRowUpdatedEventArgs Properties
| Property | Description | 
|---|---|
| Specifies the  | |
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
OracleRowUpdatedEventArgs Public Methods
The OracleRowUpdatedEventArgs properties are listed in Table 5-104.
Table 5-104 OracleRowUpdatedEventArgs Public Methods
| Public Method | Description | 
|---|---|
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
The OracleRowUpdatedEventArgs constructor creates a new OracleRowUpdatedEventArgs instance.
// C# public OracleRowUpdatedEventArgs(DataRow row,IDbCommand command, StatementType statementType, DataTableMapping tableMapping);
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.
See Also:
The OracleRowUpdatedEventArgs static method is listed in Table 5-105.
Table 5-105 OracleRowUpdatedEventArgs Static Method
| Method | Description | 
|---|---|
| 
 | Inherited from  | 
See Also:
The OracleRowUpdatedEventArgs properties are listed in Table 5-106.
Table 5-106 OracleRowUpdatedEventArgs Properties
| Property | Description | 
|---|---|
| Specifies the  | |
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
| 
 | Inherited from  | 
See Also:
This property specifies the OracleCommand that is used when OracleDataAdapter.Update() is called.
// C#
public new OracleCommand Command {get;}
The OracleCommand executed when Update is called.
See Also:
The OracleRowUpdatedEventArgs properties are listed in Table 5-107.