C Examples: DbiRelRecordLock

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

C Examples: DbiRelRecordLock

Return to chapter overview

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;

}