Icon OnProgress Event

property OnProgress: TEDBProgressEvent

Usage

The OnProgress event is fired when an SQL statement is executed via the ExecSQL or Open methods and that statement generates progress. Assign an event handler to the OnProgress event to display the progress in your application and to, optionally, abort the execution of the SQL statement by setting the Continue parameter to False. The following SQL statements will generate progress:

SELECT
INSERT
UPDATE
DELETE
ALTER TABLE
VERIFY TABLE
REPAIR TABLE
OPTIMIZE TABLE
IMPORT TABLE
EXPORT TABLE
MIGRATE DATABASE
BACKUP DATABASE
RESTORE DATABASE
COMPARE DATABASE
SAVE UPDATES
LOAD UPDATES
COPY FILE
RENAME FILE
DELETE FILE
Image