When I delete the last (I mean there's only one left) record available in t clientdataset, and call applyupdates an exception is raised from within
- procedure TMemData.SetToBookmark(Bookmark: PRecBookmark);
Code: Select all
procedure TCustomDADataSet.Resync(Mode: TResyncMode);
begin
// this need if Resync called for closed dataset (AV BUG !!!)
// HH Added and (Data.RecordCount>0)
if Active and (Data.RecordCount>0) then
inherited;
end;
Background info:
RAD Studio 2007
Oracle 10g
Regards - Hans