The OracleRowUpdatingEventArgs
class provides event data for the OracleDataAdapter.RowUpdating
event.
System.Object
System.EventArgs
System.RowUpdatingEventArgs
System.OracleRowUpdatingEventArgs
// C# public sealed class OracleRowUpdatingEventArgs : RowUpdatingEventArgs
Provider | ODP.NET, Unmanaged Driver | ODP.NET, Managed Driver |
Assembly | Oracle.DataAccess.dll |
Oracle.ManagedDataAccess.dll |
Namespace | Oracle.DataAccess.Client |
Oracle.ManagedDataAccess.Client |
.NET Framework | 3.5, 4.0, 4.5 | 4.0, 4.5 |
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 RowUpdated
event "Example".
See Also:
OracleRowUpdatingEventArgs
members are listed in the following tables.
OracleRowUpdatingEventArgs Constructors
OracleRowUpdatingEventArgs
constructors are listed in Table 6-130.
Table 6-130 OracleRowUpdatingEventArgs Constructors
Constructor | Description |
---|---|
Instantiates a new instance of |
OracleRowUpdatingEventArgs Static Methods
The OracleRowUpdatingEventArgs
static methods are listed in Table 6-131.
Table 6-131 OracleRowUpdatingEventArgs Static Methods
Method | Description |
---|---|
|
Inherited from |
OracleRowUpdatingEventArgs Properties
The OracleRowUpdatingEventArgs
properties are listed in Table 6-132.
Table 6-132 OracleRowUpdatingEventArgs Properties
Property | Description |
---|---|
Specifies the |
|
|
Inherited from |
|
Inherited from |
|
Inherited from |
|
Inherited from |
|
Inherited from |
OracleRowUpdatingEventArgs Public Methods
The OracleRowUpdatingEventArgs
public methods are listed in Table 6-133.
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 method is listed in Table 6-134.
The OracleRowUpdatingEventArgs
properties are listed in Table 6-135.
Table 6-135 OracleRowUpdatingEventArgs Properties
Property | Description |
---|---|
Specifies the |
|
|
Inherited from |
|
Inherited from |
|
Inherited from |
|
Inherited from |
|
Inherited from |
See Also:
The OracleRowUpdatingEventArgs
public methods are listed in Table 6-136.