dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlDump Class / RestoreProgress Event

RestoreProgress Event
Occurs when a SQL statement within the script is about to execute. You can use this event to track the progress of the restore integration.
Syntax
'Declaration
 
Public Event RestoreProgress As RestoreProgressEventHandler
 
Event Data

The event handler receives an argument of type RestoreProgressEventArgs containing data related to this event. The following RestoreProgressEventArgs properties provide information specific to this event.

PropertyDescription
Gets the length of the statement in symbols.  
Gets the number of line in the whole script where the statement is located.  
Gets the position on the line where the statement starts.  
Gets offset of the statement in the whole script text.  
Gets type of the statement.  
Gets the SQL statement that is about to be executed.  
See Also