EPUB | CHM | PDF

TPSQLTools.Properties.Verbose

Top Previous Next

Prints a detailed VACUUM or ANALYZE activity report for each item.

Syntax:

property Verbose: boolean;

Description:

If Verbose property is True, ANALYZE and VACUUM operations emit progress messages to indicate which item is currently being processed. Various statistics about the tables are printed as well. To proceed this messages write TPSQLDatabase.OnNotice event handler.

Example:

Simple OnNotice handler.

procedure TForm1.PSQLDatabase1Notice(Sender: TPSQLDatabase;
  Message: String);
begin
 logMemo.Strings.Append(Trim(Message));
end;

See also: Operation, OnNotice