RowUpdatedEventArgs Class
Definition
Provides data for the RowUpdated
event of a .NET data provider.
public ref class RowUpdatedEventArgs : EventArgs
public ref class RowUpdatedEventArgs abstract : EventArgs
public class RowUpdatedEventArgs : EventArgs
public abstract class RowUpdatedEventArgs : EventArgs
type RowUpdatedEventArgs = class
inherit EventArgs
Public Class RowUpdatedEventArgs
Inherits EventArgs
Public MustInherit Class RowUpdatedEventArgs
Inherits EventArgs
- Inheritance
- Derived
Remarks
The RowUpdated
event message is typically raised when an Update to a row is completed.
Constructors
RowUpdatedEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping) |
Initializes a new instance of the RowUpdatedEventArgs class. |
Properties
Command |
Gets the IDbCommand executed when Update(DataSet) is called. |
Errors |
Gets any errors generated by the .NET data provider when the Command was executed. |
RecordsAffected |
Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. |
Row |
Gets the DataRow sent through an Update(DataSet). |
RowCount |
Gets the number of rows processed in a batch of updated records. |
StatementType |
Gets the type of SQL statement executed. |
Status |
Gets the UpdateStatus of the Command property. |
TableMapping |
Gets the DataTableMapping sent through an Update(DataSet). |
Methods
CopyToRows(DataRow[]) |
Copies references to the modified rows into the provided array. |
CopyToRows(DataRow[], Int32) |
Copies references to the modified rows into the provided array. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |