why IBDAC does not work with firebird 2.5 emmbeded version?
why IBDAC does not work with firebird 2.5 emmbeded version?
Does ibdac support firebird 2.5 embedded version?
-
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:
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;