Oracle® Data Provider for .NET Developer's Guide 11g Release 1 (11.1) Part Number B28375-01 |
|
|
View PDF |
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.x or 2.0
See Also:
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 |
---|---|
Instantiates a new instance of |
OracleRowUpdatedEventArgs Static Methods
The OracleRowUpdatedEventArgs
static method is listed in Table 5-83.
Table 5-83 OracleRowUpdatedEventArgs Static Method
Method | Description |
---|---|
|
Inherited from |
OracleRowUpdatedEventArgs Properties
The OracleRowUpdatedEventArgs
properties are listed in Table 5-84.
Table 5-84 OracleRowUpdatedEventArgs Properties
Name | 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-85.
Table 5-85 OracleRowUpdatedEventArgs Public Methods
Name | Description |
---|---|
|
Inherited from |
|
Inherited from |
|
Inherited from |
|
Inherited from |
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
.
See Also:
The OracleRowUpdatedEventArgs
static method is listed in Table 5-86.
Table 5-86 OracleRowUpdatedEventArgs Static Method
Method | Description |
---|---|
|
Inherited from |
See Also:
The OracleRowUpdatedEventArgs
properties are listed in Table 5-87.
Table 5-87 OracleRowUpdatedEventArgs Properties
Name | 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.
Declaration
// C# public new OracleCommand Command {get;}
Property Value
The OracleCommand
executed when Update
is called.
See Also:
The OracleRowUpdatedEventArgs
properties are listed in Table 5-88.