| Oracle Data Provider for .NET Developer's Guide Release 9.2.0.2 Part Number A96160-01 |
|
Oracle.DataAccess.Client Namespace, 19 of 26
The OracleRowUpdatingEventArgs class provides event data for the OracleDataAdapter.RowUpdating event.
Object
EventArgs
RowUpdatingEventArgs
OracleRowUpdatingEventArgs
// C# public sealed class OracleRowUpdatingEventArgs : RowUpdatingEventArgs
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 OracleRowUpdatingEventArgs. See "Example".
Namespace: Oracle.DataAccess.Client
Assembly: Oracle.DataAccesss.dll
OracleRowUpdatingEventArgs members are listed in the following tables:
OracleRowUpdatingEventArgs constructors are listed in Table 4-107.
| Constructor | Description |
|---|---|
|
Instantiates a new instance of OracleRowUpdatingEventArgs class (Overloaded) |
The OracleRowUpdatingEventArgs static methods are listed in Table 4-108.
| Methods | Description |
|---|---|
|
|
Inherited from |
The OracleRowUpdatingEventArgs properties are listed in Table 4-109.
The OracleRowUpdatingEventArgs public methods are listed in Table 4-110.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
The OracleRowUpdatingEventArgs constructor creates a new instance of the OracleRowUpdatingEventArgs class using the supplied data row, IDbCommand, type of SQL statement, and table mapping.
// C# public OracleRowUpdatingEventArgs(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.
The OracleRowUpdatingEventArgs static methods are listed in Table 4-111.
| Methods | Description |
|---|---|
|
|
Inherited from |
The OracleRowUpdatingEventArgs properties are listed in Table 4-112.
This property specifies the OracleCommand that is used when the OracleDataAdapter.Update() is called.
// C# public new OracleCommand Command {get; set;}
The OracleCommand executed when Update is called.
The OracleRowUpdatingEventArgs public methods are listed in Table 4-113.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
![]() Copyright © 2002 Oracle Corporation. All Rights Reserved. |
|