'Declaration Public Event RestoreProgress As RestoreProgressEventHandler
public event RestoreProgressEventHandler RestoreProgress
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.
Property | Description |
---|---|
Length | Gets the length of the statement in symbols. |
LineNumber | Gets the number of line in the whole script where the statement is located. |
LinePosition | Gets the position on the line where the statement starts. |
Offset | Gets offset of the statement in the whole script text. |
StatementType | Gets type of the statement. |
Text | Gets the SQL statement that is about to be executed. |
See Also