ZEOS DBO with SQLite memory leaks

In this forum all bug reports concerning the 6.x branch will be gahtered. You have the possibility to track the bug fix process.

Moderators: EgonHugeist, mdaems

Post Reply
tuuusas
Fresh Boarder
Fresh Boarder
Posts: 1
Joined: 28.09.2005, 12:28

ZEOS DBO with SQLite memory leaks

Post by tuuusas »

I'm using SQLite 3.3.8 dll version with ZDBO 6.6 beta. Data from SELECT is corect, but i have a lot of leaks after i close program [using FastMM474] (file sqlite_MemoryManager_EventLog.txt attached)

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
  FConnection := TZConnection.Create(nil);
  FConnection.Database := 'C:\sqlite-3_3_8\test.db';
  FConnection.Protocol := 'sqlite-3';
  FZQuery := TZQuery.Create(nil);
  FZQuery.Connection := FConnection;
  FZQuery.SQL.text := 'select * from MAINDATA where id = 1';
  FZQuery.Open;
  FZQuery.free;
  FConnection.Free;
end;
Any sugestions?
Thanks
You do not have the required permissions to view the files attached to this post.
aducom
Zeos Dev Team
Zeos Dev Team
Posts: 67
Joined: 30.08.2005, 13:21

Post by aducom »

Is this the amount of leaked data depending on the amount of data-access or constant?
Post Reply