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
 

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.

See Also