Hi,
I have the Problem "maximum opened curors exceeded" with D5, Oracle 10g, ZeosLib 6.5.1 Alpha of 14/11/2004 (the latest Version doesn't work with D5)
I apllied this changes :
The change is in the Zeos Source Code:
In the sorce code change:
destructor TZAbstractStatement.Destroy;
to new text:
{**
Destroys this object and cleanups the memory.
}
destructor TZAbstractStatement.Destroy;
begin
// Fabian: Begin fix of bug #1076975
Close;
// Fabian: End of fix
if Assigned(FBatchQueries) then
FBatchQueries.Free;
FBatchQueries := nil;
FConnection := nil;
FInfo.Free;
FLastResultSet := nil;
inherited Destroy;
end;
from:
http://sourceforge.net/tracker/index.ph ... tid=415826
BUT IT DOESN'T WORK !
CAN SOMEBOD HELP ME ? PLEASE
maximum opened curors exceeded
Moderators: gto, cipto_kh, EgonHugeist
Hmm we had someone with same problem. As far as i remember it was working for him. Maybe ask him at thread http://zeos.firmos.at/viewtopic.php?t=6 ... ght=cursor
fabian