Re: Delphi 5.0 ADO with d5adoupdate2 fail with findNext ?



I have installed d5adoupdate2, is there other updates, do I need the update1?
(I tried with D6Ent and I had the same problem with it. Now I have jeopardized
the rest of D5 ADODB.PAS FindNext function and the old code works with ADO)

Does the "d5adoupdate2" require library recompilation or something more
than Installing and project build
-jukka

Have you installed the Delphi 5 ADO updates?

Mike
Delphi 5.0 ADO with d5adoupdate2 fail with findNext ?
At least this little piece of code fails with .. BOF EOF error in my
case...(firebird,mssql6.5)
-------------
if active and findfirst then
repeat
...
until not findNext;
end;
--------------

If I just alter the file ADODB and compile with it works fine...

---------------- ADODB.PAS line 4689
if not Cursor.BOF and not Cursor.EOF then // added "Exception" ???
begin
if (Cursor <> Recordset) then
Recordset.Bookmark := FFindCursor.Bookmark;
Resync([rmExact, rmCenter]);
SetFound(True);
end;
except
----------------

Is This known bug or am I doing something terribly wrong?

-jukka






.