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.
Property DriverName in TIBCConnection
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:
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';