Performance with RAD Studio 2007 running

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for InterBase & Firebird in Delphi and C++Builder
Post Reply
worksoft
Posts: 2
Joined: Sat 18 Oct 2008 16:24

Performance with RAD Studio 2007 running

Post by worksoft » Sat 18 Oct 2008 16:31

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

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Wed 22 Oct 2008 07:44

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);

Post Reply