Look at this code:
Code: Select all
MyUniTable.first;
while not MyUniTable.eof do begin
if (MyUniTable.FieldByName('some_field').asInteger>=300) then MyUniTable.delete;
MyUniTable.Next;
end;
My question is: If i delete a record, does Next and Eof will work properly ?
Thanks