"either bof or eof is true or the current record has been deleted.." error on applyupdates that cont

Posted by AhmetC on Stack Overflow See other posts from Stack Overflow or by AhmetC
Published on 2009-12-07T12:07:31Z Indexed on 2010/05/02 23:48 UTC
Read the original article Hit count: 417

Hello,

I am getting this error while resolving delete operation from ClientDatset to TAdoDataset (which bound to access table). I am using Delphi 2010.

My DatasetProvider between TClientDataset and TAdoDataset :

object dspTarifeler: TDataSetProvider
  DataSet = DM.qryTarifeler    
  ResolveToDataSet = True
  Options = [poPropogateChanges, poUseQuoteChar]
end

Error occurs in this function which is called by TDataSetResolver.EndUpdate();

procedure TCustomADODataSet.InternalGotoBookmark(Bookmark: Pointer);
begin
  Recordset.Bookmark := POleVariant(Bookmark)^;
end;

© Stack Overflow or respective owner

Related posts about delphi

Related posts about tadodataset