Delphi Examples: DbiModifyRecord

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiModifyRecord

Return to chapter overview

Modify the current record and remove the record lock (if one exists)

Delphi programs should use the Post and Edit methods on a dataset to modify a record. This procedure modifies the current record with the contents of the given record buffer.

procedure fDbiModifyRecord(hCur: hDbiCur; pRecBufModify: pByte);

begin

 Check(DbiModifyRecord(hCur, pRecBufModify, True));

end;