Subject Re: [IBO] fbclient.dll instead of gds32.dll
Author Helen Borrie
At 10:09 AM 5/01/2004 +0000, you wrote:
>How to "tell" TIBODatabse that I "want" to use fbclient.dll instead of
>gds32.dll?

If you have the source code, you can replace the value in the constant
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