FireDAC.InfoReport Sample
This sample demonstrates the functionality of the TFDConnection component to provide information about FireDAC, connection, client and database software.
Location
You can find the TFDConnection\InfoReport sample project at:
- Start | Programs | Embarcadero RAD Studio Sydney | Samples and then navigate to:
- Object Pascal\DataBase\FireDAC\Samples\Comp Layer\TFDConnection\InfoReport.
- Subversion Repository for Delphi: https://github.com/Embarcadero/RADStudio10.4Demos/tree/master/Object%20Pascal/Database/FireDAC/Samples/Comp%20Layer/TFDConnection/InfoReport.
Description
This sample uses the ConnectionDefName property of the TFDConnection to specify the name of the connection definition to use. The demo calls the GetInfoReport method to provide the report. The FireDAC environment report contains detailed information including:
- FireDAC and RAD Studio versions
- Connection definition parameters
- Database client software name and version
- Database server software name and version
- Database session information
How to Use the Sample
- Navigate to the location given above and open:
- Delphi: FireDACConnInfo.dproj
- Press F9 or choose Run > Run.
- Select one of the following options:
- Click Get report: Populates the TMemo with detailed information about the connection status.
- Click Get versions: Gets the DBMS client and server versions.
Implementation
- Get report button:
It calls the GetInfoReport method of the TFDConnection component to populate the TMemo with detailed information about the connection status.
procedure TMainForm.Button1Click(Sender: TObject);
begin
// Output complete connection status report
FDConnection1.GetInfoReport(mmInfo.Lines);
end;
- Get versions button:
It uses the IFDPhysConnectionMetadata interface to get the client and server versions.
See ConnectionMetaDataIntf for more information.
Uses
- FireDAC.Comp.Client.TFDConnection
- FireDAC.Comp.UI.TFDGUIxWaitCursor
- FireDAC.Phys.SQLite.TFDPhysSQLiteDriverLink
- FireDAC.Comp.Client.TFDCustomConnection.GetInfoReport
- FireDAC.Comp.Client.TFDCustomConnection.ConnectionMetaDataIntf