ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/fbintf/testsuite/TestManager.pas
(Generate patch)

Comparing ibx/trunk/fbintf/testsuite/TestManager.pas (file contents):
Revision 87 by tony, Mon Jan 1 11:31:26 2018 UTC vs.
Revision 143 by tony, Fri Feb 23 12:11:21 2018 UTC

# Line 582 | Line 582 | begin
582       WriteOperationCounts('Update Count',getOperationCounts);
583     isc_info_db_SQL_Dialect:
584       writeln(OutFile,'SQL Dialect = ',getAsInteger);
585 +   isc_info_creation_date:
586 +     writeln(OutFile,'Database Created: ',DateTimeToStr(getAsDateTime));
587 +   isc_info_active_tran_count:
588 +     writeln(OutFile,'Active Transaction Count = ',getAsInteger);
589 +   fb_info_page_contents:
590 +     begin
591 +       writeln('Database Page');
592 +       PrintHexString(getAsString);
593 +       writeln;
594 +     end;
595 +   fb_info_pages_used:
596 +     writeln(OutFile,'Pages Used = ',getAsInteger);
597 +   fb_info_pages_free:
598 +   writeln(OutFile,'Pages Free = ',getAsInteger);
599 +
600 +   isc_info_truncated:
601 +     writeln(OutFile,'Results Truncated');
602     else
603       writeln(OutFile,'Unknown Response ',getItemType);
604    end;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines