why IBDAC does not work with firebird 2.5 emmbeded version?

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
ae1080
Posts: 2
Joined: Thu 21 Apr 2011 09:26

why IBDAC does not work with firebird 2.5 emmbeded version?

Post by ae1080 » Thu 21 Apr 2011 10:12

Does ibdac support firebird 2.5 embedded version?

AndreyZ

Post by AndreyZ » Thu 21 Apr 2011 10:32

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;

Post Reply