Subject | Re: [firebird-support] Help!!! - Problem with Firebird Embeded |
---|---|
Author | Adam |
Post date | 2014-09-14T12:25:52Z |
On Sun, Sep 14, 2014 at 10:15 PM, Iwan Cahyadi Sugeng iwan.c.sugeng@... [firebird-support] <firebird-support@yahoogroups.com> 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 beginClear;Add('Database='+fdbPath);Add('User_Name=SYSDBA');Add('Password=masterkey');Add('DriverID=IB');end;