RowUpdatedEventArgs Classe
Définition
Fournit les données de l’événement RowUpdated
d’un fournisseur de données .NET.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
- Héritage
- Dérivé
Remarques
Le RowUpdated
message d’événement est généralement déclenché quand un Update à une ligne est terminé.The RowUpdated
event message is typically raised when an Update to a row is completed.
Constructeurs
RowUpdatedEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping) |
Initialise une nouvelle instance de la classe RowUpdatedEventArgs.Initializes a new instance of the RowUpdatedEventArgs class. |
Propriétés
Command |
Obtient le IDbCommand exécuté lors de l'appel de Update(DataSet).Gets the IDbCommand executed when Update(DataSet) is called. |
Errors |
Récupère les erreurs générées par le fournisseur de données .NET lors de l’exécution de Command.Gets any errors generated by the .NET data provider when the Command was executed. |
RecordsAffected |
Obtient le nombre de lignes modifiées, insérées ou supprimées par l'exécution de l'instruction SQL.Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. |
Row |
Obtient le DataRow envoyé par le biais de Update(DataSet).Gets the DataRow sent through an Update(DataSet). |
RowCount |
Obtient le nombre de lignes traitées dans un lot d'enregistrements mis à jour.Gets the number of rows processed in a batch of updated records. |
StatementType |
Obtient le type de l'instruction SQL exécutée.Gets the type of SQL statement executed. |
Status |
Obtient UpdateStatus de la propriété Command.Gets the UpdateStatus of the Command property. |
TableMapping |
Obtient le DataTableMapping envoyé par le biais de Update(DataSet).Gets the DataTableMapping sent through an Update(DataSet). |
Méthodes
CopyToRows(DataRow[]) |
Copie les références vers les lignes modifiées dans le tableau fourni.Copies references to the modified rows into the provided array. |
CopyToRows(DataRow[], Int32) |
Copie les références vers les lignes modifiées dans le tableau fourni.Copies references to the modified rows into the provided array. |
Equals(Object) |
Détermine si l'objet spécifié est égal à l'objet actuel.Determines whether the specified object is equal to the current object. (Hérité de Object) |
GetHashCode() |
Fait office de fonction de hachage par défaut.Serves as the default hash function. (Hérité de Object) |
GetType() |
Obtient le Type de l'instance actuelle.Gets the Type of the current instance. (Hérité de Object) |
MemberwiseClone() |
Crée une copie superficielle du Object actuel.Creates a shallow copy of the current Object. (Hérité de Object) |
ToString() |
Retourne une chaîne qui représente l'objet actuel.Returns a string that represents the current object. (Hérité de Object) |