EPUB | CHM | PDF

TPSQLRestore.Properties.Database

Top Previous Next

Specifies the database component for which this restore 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 restore tool.

In design-time you may choose database from drop-down list.

Example:

// Do a transaction
with PSQLRestore1.Database do
begin
  StartTransAction;
  Commit;
end;