Page 1 of 1

Property DriverName in TIBCConnection

Posted: Mon 16 Apr 2012 06:21
by ralle1
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.

Posted: Tue 17 Apr 2012 08:20
by ZEuS
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';

Posted: Tue 17 Apr 2012 10:28
by ralle1
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!