VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / AcceptChangesDuringFill Property


In This Topic
    AcceptChangesDuringFill Property
    In This Topic
    Gets or sets a value indicating whether System.Data.DataRow.AcceptChanges is called on a System.Data.DataRow after it is added to the System.Data.DataTable during any of the Fill operations.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(True)>
    <ResCategoryAttribute("DataCategory_Fill")>
    <ResDescriptionAttribute("DataAdapter_AcceptChangesDuringFill")>
    Public Property AcceptChangesDuringFill As System.Boolean
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim value As System.Boolean
     
    instance.AcceptChangesDuringFill = value
     
    value = instance.AcceptChangesDuringFill
    [System.ComponentModel.DefaultValue(true)]
    [ResCategory("DataCategory_Fill")]
    [ResDescription("DataAdapter_AcceptChangesDuringFill")]
    public System.bool AcceptChangesDuringFill {get; set;}

    Property Value

    true if System.Data.DataRow.AcceptChanges is called on the System.Data.DataRow; otherwise false. The default is true.
    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