Page 1 of 1

Problems with the path in the UniDAC versions 4.3.8 / 5.4.10

Posted: Mon 21 Jan 2013 14:52
by ec2
Hi, in version 4.3.8 running the path
"Con1.SpecificOptions.Add('InterBase.ClientLibrary=.\fbclient.dll');,"
without error.

The same is available in version 4.5.10 it the error "Can not find Client Library".

What's going on

Re: Problems with the path in the UniDAC versions 4.3.8 / 5.4.10

Posted: Mon 21 Jan 2013 16:04
by AndreyZ
Hello,

It seems that Con1 already contains the 'InterBase.ClientLibrary' specific option (pointing to some other client library) when you add the new one. Try using the following code:

Code: Select all

Con1.SpecificOptions.Values['ClientLibrary'] := '.\fbclient.dll';