dotConnect Universal Documentation
Devart.Data.Universal Namespace / UniRowUpdatingEventArgs Class
Members

In This Topic
    UniRowUpdatingEventArgs Class
    In This Topic
    Provides data for the UniDataAdapter.RowUpdating event. This class cannot be inherited.
    Syntax
    'Declaration
     
    Public Class UniRowUpdatingEventArgs 
       Inherits System.Data.Common.RowUpdatingEventArgs
    public class UniRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs 
    Remarks
    The UniDataAdapter.RowUpdating event is raised before an update to a row.

    When using the System.Data.Common.DbDataAdapter.Update() method, there are two events that occur for each data row updated: UniDataAdapter.RowUpdating and UniDataAdapter.RowUpdated. The order of execution for an update operation is as follows:

    1. The values in the System.Data.DataRow are moved to the parameter values.
    2. The UniDataAdapter.RowUpdating event is raised.
    3. The command executes.
    4. If the System.Data.UpdateRowSource enumeration is set to System.Data.UpdateRowSource.FirstReturnedRecordS, the first returned result is placed in the System.Data.DataRow.
    5. If there are output parameters, they are placed in the System.Data.DataRow.
    6. The UniDataAdapter.RowUpdated event is raised.
    7. System.Data.DataRow.AcceptChanges is called.
    Inheritance Hierarchy

    System.Object
       System.EventArgs
          System.Data.Common.RowUpdatingEventArgs
             Devart.Data.Universal.UniRowUpdatingEventArgs

    See Also