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
Problems with the path in the UniDAC versions 4.3.8 / 5.4.10
-
AndreyZ
Re: Problems with the path in the UniDAC versions 4.3.8 / 5.4.10
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:
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';