Delphi Examples: DbiRelRecordLock

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiRelRecordLock

Return to chapter overview

Release the record lock on either the current record or all the record locks in the current session.

This example uses the following input:

 fDbiRelRecordLock(Table1.Handle, True);

 

The procedure is:

procedure fDbiRelRecordLock(hTmpHandle:hDBICur; bAll: Boolean);

begin

 Check(DbiRelRecordLock(hTmpHandle, bAll));

end;