Page 1 of 1

Performance with RAD Studio 2007 running

Posted: Sat 18 Oct 2008 16:31
by worksoft
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

Posted: Wed 22 Oct 2008 07:44
by Plash
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);