Hi
I am using dbExpress driver for InterBase/Firebird 2.20.0.5 and the performance of my application is 75% slower when the RAD Studio it's
not running.
Is there some dll loaded by RAD Studio which makes the driver run faster?
Thanks
Performance with RAD Studio 2007 running
You can try to preload the driver DLL to increase the performance of connection.
Code: Select all
var
LibHandle: THandle;
initialization
LibHandle := LoadLibrary('dbexpida40.dll');
finalization
FreeLibrary(LibHandle);