OdbcDataAdapter.RowUpdating Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit pendant une opération de Update(DataSet), avant l'exécution d'une commande sur la source de données.
public:
event System::Data::Odbc::OdbcRowUpdatingEventHandler ^ RowUpdating;
public event System.Data.Odbc.OdbcRowUpdatingEventHandler? RowUpdating;
public event System.Data.Odbc.OdbcRowUpdatingEventHandler RowUpdating;
member this.RowUpdating : System.Data.Odbc.OdbcRowUpdatingEventHandler
Public Custom Event RowUpdating As OdbcRowUpdatingEventHandler
Type d'événement
Remarques
Lorsque vous utilisez Update, deux événements se produisent par ligne de données mise à jour. L’ordre d’exécution est le suivant :
Les valeurs dans le DataRow sont déplacées vers les valeurs de paramètre.
L'événement OnRowUpdating est déclenché.
La commande s’exécute.
Si la commande a la
FirstReturnedRecord
valeur , le premier résultat retourné est placé dans le DataRow.S’il existe des paramètres de sortie, ils sont placés dans .DataRow
L'événement OnRowUpdated est déclenché.
AcceptChanges est appelée.