Por si a alguien le sirve, COPILOT me sugirió esto (supero a CHATGPT):
To configure FireDAC to use InterBase ToGo, follow these steps:
Install InterBase ToGo:
Ensure you have a valid license for InterBase ToGo. If you’re using RAD Studio, you might have received a key for an unlimited development and deployment license for IBLite or InterBase ToGo1.
Set Up Your Project:
Open your Delphi or C++Builder project.
Add the necessary FireDAC components to your form, such as TFDConnection, TFDQuery, etc.
Configure the Connection:
Drop a TFDPhysIBDriverLink component onto your form.
Set the VendorLib property to the path of the InterBase ToGo library (ibtogo.dll for Windows, libibtogo.dylib for macOS, etc.)2.
Define Connection Parameters:
Set up the connection parameters in the TFDConnection component. Here is an example:
Código Delphi
[-]FDConnection1.DriverName := 'IB';
FDConnection1.Params.Values['Database'] := 'C:\path\to\your\database.ib';
FDConnection1.Params.Values['User_Name'] := 'sysdba';
FDConnection1.Params.Values['Password'] := 'masterkey';
FDConnection1.Params.Values['CharacterSet'] := 'UTF8';
Deploy Required Files:
Ensure that the InterBase ToGo library and your database file are included in your deployment. For mobile platforms, use the Project > Deployment menu to add these files1.
Test the Connection:
Use the Connected property of the TFDConnection component to test the connection:
Código Delphi
[-]FDConnection1.Connected := True;