dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlDumpProgressEventArgs Class / Progress Property

In This Topic
    Progress Property
    In This Topic
    Gets quantity of dumped rows in current table or number of current statement in a script.
    Syntax
    'Declaration
     
    Public ReadOnly Property Progress As Long
    public long Progress {get;}

    Property Value

    Depends on which method has fired the event.
    Remarks

    When executing Restore method Progress property indicates number of current statement in the script. Use in conjunction with MaxProgress property to determine what part of script has executed.

    When executing Backup method this property indicates how many rows in the current table have been dumped already. For other types of database objects Progress property is meaningless. Use MaxProgress property to determine total amount of rows in the current table.

    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