RowIdAllocations 0

We are using DOA 4.0.7.1 for Delphi 7. We have a data aware application that when closes hits the following code in OracleData.pas:

finalization
if RowIdAllocations 0 then
raise Exception.Create('Assertion failed: RowIdAllocations = 0');

the actual value of RowIdAllocations = 1

Has this problem been fixed in a subsequent version please?
 
I'm not aware of such a problem, so I doubt that it is fixed. If this happens when the application closes, you could remove the assertion (assuming that you have the source code).
 
Back
Top