|
<< Click to Display Table of Contents >> C Examples: DbiRelRecordLock |
![]() ![]()
|
Release all record locks on the table associated with a cursor.
Note: To release only the one record pointed to by the cursor, set bAll to FALSE.
DBIResult fDbiRelRecordLock(hDBICur hCur)
{
DBIResult rslt;
BOOL bAll;
bAll = TRUE;
rslt = Chk(DbiRelRecordLock(hCur, bAll));
return rslt;
}