maximum opened curors exceeded

Forum related to version 6.5.1 (alpha) and 6.6.x (beta) of ZeosLib's DBOs

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
bart57
Fresh Boarder
Fresh Boarder
Posts: 11
Joined: 18.07.2006, 14:40

maximum opened curors exceeded

Post by bart57 »

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 :(
Terence
Zeos Dev Team
Zeos Dev Team
Posts: 141
Joined: 22.09.2005, 14:11
Location: Stuttgart
Contact:

Post by Terence »

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
bart57
Fresh Boarder
Fresh Boarder
Posts: 11
Joined: 18.07.2006, 14:40

Post by bart57 »

I've make the changes from his thread but it doesn't work !

Have somebody an idea please ?


thx
bart57
Fresh Boarder
Fresh Boarder
Posts: 11
Joined: 18.07.2006, 14:40

Post by bart57 »

It works now !

I've deleted the bpl and dcu and rebuilded them an now it works !


thank you
Post Reply