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
    Gets or sets a value indicating whether to continue the fill operation despite the error.  
    Gets the System.Data.DataTable being updated when the error occurred.  
    Gets the errors being handled.  
    Gets the values for the row being updated when the error occurred.  
    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.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also