Subject | Re: [IBO] fbclient.dll instead of gds32.dll |
---|---|
Author | Helen Borrie |
Post date | 2004-01-05T10:21:51Z |
At 10:09 AM 5/01/2004 +0000, you wrote:
IB_GDS32.
If not, create a new unit IB_SetLibFb15.pas as below (any name you prefer)
and include it in your project. Edit the DPR file so that your new unit is
the first one listed in the 'uses' clause.
unit
IB_SetLibFb15;
interface
uses
IB_Constants;
implementation
initialization
// Replace gds32.dll with the alternative client DLL value.
IB_Constants.IB_GDS32 := 'fbclient.dll';
end.
Helen
>How to "tell" TIBODatabse that I "want" to use fbclient.dll instead ofIf you have the source code, you can replace the value in the constant
>gds32.dll?
IB_GDS32.
If not, create a new unit IB_SetLibFb15.pas as below (any name you prefer)
and include it in your project. Edit the DPR file so that your new unit is
the first one listed in the 'uses' clause.
unit
IB_SetLibFb15;
interface
uses
IB_Constants;
implementation
initialization
// Replace gds32.dll with the alternative client DLL value.
IB_Constants.IB_GDS32 := 'fbclient.dll';
end.
Helen