Subject | Re: [IBO] fbclient.dll instead of gds32.dll |
---|---|
Author | Nando Dessena |
Post date | 2004-01-05T10:18:07Z |
Matej,
M> How to "tell" TIBODatabse that I "want" to use fbclient.dll instead of
M> gds32.dll?
unit usefbclient;
interface
implementation
uses
IB_Constants;
initialization
IB_GDS32 := 'fbclient.dll';
finalization
end.
Preferably put the unit "usefbclient" first in the project's uses clause.
P.S. Please notice that this is not the recommended way to load the
Firebird 1.5 client library. The official methods involves looking up
the path in the Registry. See the release notes.
Ciao
--
Nando mailto:nandod@...
M> How to "tell" TIBODatabse that I "want" to use fbclient.dll instead of
M> gds32.dll?
unit usefbclient;
interface
implementation
uses
IB_Constants;
initialization
IB_GDS32 := 'fbclient.dll';
finalization
end.
Preferably put the unit "usefbclient" first in the project's uses clause.
P.S. Please notice that this is not the recommended way to load the
Firebird 1.5 client library. The official methods involves looking up
the path in the Registry. See the release notes.
Ciao
--
Nando mailto:nandod@...