dotConnect for PostgreSQL Documentation
Devart.Common Namespace / DbDataTable Class / FillError Event

In This Topic
    FillError Event
    In This Topic
    Occurs when an error is raised during a fill operation.
    Syntax
    'Declaration
     
    Public Event FillError As FillErrorEventHandler
    public event FillErrorEventHandler FillError
    Event Data

    The event handler receives an argument of type FillErrorEventArgs containing data related to this event. The following FillErrorEventArgs properties provide information specific to this event.

    PropertyDescription
     
     
     
     
    Remarks
    A System.Data.FillErrorEventArgs object is passed to delegate, so you can determine what DbDataTable object has raised an error, what errors are being handled, what are the values for the row being updated when the error occurred, and whether to continue the execution. For more information refer to MSDN topic System.Data.FillErrorEventArgs.
    See Also