Search found 3 matches

by mmbom
26.02.2007, 15:34
Forum: MS SQL Server
Topic: Zeos fails to open huge recordsets from MSSQL 2000
Replies: 5
Views: 3465

Mark, I'm working with text indexation. A single document itself is very small (less than 2k). Without the fetching cache, it is not a heavy operation, even to the server. I could make it using a cursor, the only problem is 3 thousands “FETCH NEXT” is a huge bottleneck. Another problem is, my applic...
by mmbom
26.02.2007, 00:56
Forum: MS SQL Server
Topic: Zeos fails to open huge recordsets from MSSQL 2000
Replies: 5
Views: 3465

Zeos fails to open huge recordsets from MSSQL 2000

Guys, I'm trying to open a huge recordset (over 3,000,000 rows) which is basically plain text documents, but Zeos TZDBLibStatement fails because it tries to create a cached recordset, and there is not enough memory on 32bit system to do that. I know that Zeos do that because dblib can’t execute any ...
by mmbom
13.04.2006, 02:08
Forum: 6.1.5
Topic: Memory leak? or am I doing something wrong?
Replies: 18
Views: 7268

Guys,
Maybe it helps.

in "ZDbcCache.pas" on:
procedure TZRowAccessor.DisposeBuffer(Buffer: PZRowBuffer);

try to change:

Code: Select all

    FreeMem(Buffer, FRowSize);
to:

Code: Select all

    FreeMem(Buffer);
It worked for me, I'm using Delphi 2006.