Specifies the database component for which this dump tool will be used.
Syntax:
property Database: TPSQLDatabase;
Description:
Use Database property to access the connection and some other properties, events, and
methods of the database component associated with this dump tool.
In design-time you may choose database from drop-down list.
Example:
// Do a transaction
with DumpTools1.Database do
begin
StartTransAction;
Commit;
end;