Page 1 of 1

why IBDAC does not work with firebird 2.5 emmbeded version?

Posted: Thu 21 Apr 2011 10:12
by ae1080
Does ibdac support firebird 2.5 embedded version?

Posted: Thu 21 Apr 2011 10:32
by AndreyZ
Hello,

IBDAC supports Firebird 2.5 Embedded. You can learn how to use Firebird Embedded with your application in the %Firebird_Embedded_Directory%\Doc\README_embedded.txt file. To connect to a Firebird database using IBDAC, you should use the following code:

Code: Select all

IBCConnection.ClientLibrary := 'fbembed.dll';
IBCConnection.Server := '';
IBCConnection.Database := 'your_database';
IBCConnection.Username := 'sysdba';
IBCConnection.Password := 'masterkey';
IBCConnection.Connect;