On Sun, Sep 14, 2014 at 10:15 PM, Iwan Cahyadi Sugeng
[email protected] [firebird-support] <[email protected]
> wrote:
>
>
> what is your connection string, don't use localhost:dbname format. Try use
> only the filename. Try ems sql manager for firebird, it has embeded protocol
>
This is how I'm trying to connect:
fdbPath := ExtractFilePath(ParamStr(0))+'CrypticMania.FDB';
with ADConnection1.Params do begin
Clear;
Add('Database='+fdbPath);
Add('User_Name=SYSDBA');
Add('Password=masterkey');
Add('DriverID=IB');
end;