|
<< Click to Display Table of Contents >> Delphi Examples: DbiModifyRecord |
![]() ![]()
|
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;