VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / FillError Event


In This Topic
    FillError Event
    In This Topic
    Returned when an error occurs during a fill operation.
    Syntax
    'Declaration
     
    
    <ResCategoryAttribute("DataCategory_Fill")>
    <ResDescriptionAttribute("DataAdapter_FillError")>
    Public Event FillError As System.Data.FillErrorEventHandler
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim handler As System.Data.FillErrorEventHandler
     
    AddHandler instance.FillError, handler
    [ResCategory("DataCategory_Fill")]
    [ResDescription("DataAdapter_FillError")]
    public event System.Data.FillErrorEventHandler FillError
    Event Data

    The event handler receives an argument of type System.Data.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.  
    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