Property DriverName in TIBCConnection

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
ralle1
Posts: 43
Joined: Thu 27 May 2010 15:01

Property DriverName in TIBCConnection

Post by ralle1 » Mon 16 Apr 2012 06:21

Hello!

can you tell me, what is the correct way to fill the property "DriverName" before connect ?

Currently I fill in a Firebird 1.5 database with the value "firebird-1.5" or in an 2.0 database "firebird-2.0".

What do I have to fill with FB 2.1 and FB 2.5 databases ?

Thank you.

ZEuS
Devart Team
Posts: 240
Joined: Thu 05 Apr 2012 07:32

Post by ZEuS » Tue 17 Apr 2012 08:20

Hello.

There is no "DriverName" property in TIBCConnection. You should use the TIBCConnection.ClientLibrary property instead of "DriverName".
You can set the TIBCConnection.ClientLibrary property with the path to the client library (gds32.dll or fbclient.dll for Firebird), that you want to use.
For example:

Code: Select all

TIBCConnection1.ClientLibrary := 'c:\fbclient.dll';

ralle1
Posts: 43
Joined: Thu 27 May 2010 15:01

Post by ralle1 » Tue 17 Apr 2012 10:28

Many thanks for the answer.

Of course there is no property Drivername, I just looked wrong in my own sourcecode. My problem has done so.

Thank you!

Post Reply