UNLOCK

UNLOCK Release file/record locks set by the current user Syntax UNLOCK [ALL] Arguments ALL releases all current locks in all work areas. If not specified, only the lock in the current work area is released. Description UNLOCK is a network command that releases file or record locks set by the current user. Use it when … Continue reading

Rate this:

dbRUnlock()

DBRUNLOCK() Unlocks a record based on its identifier Syntax DBRUNLOCK([<xIdentity>]) Arguments <xIdentity> Record identifier, typically a record number Description This function will attempt to unlock the record specified as <xIdentity>, which in a .dbf format is the record number. If not specified, them the current active record/data item will be unlocked Examples PROCEDURE Main() USE … Continue reading

Rate this:

hb_FUnlock()

HB_FUNLOCK() Unlocks part or all of any file Syntax HB_FUNLOCK( <nHandle>, <nOffset>, <nBytes> ) –> <lSuccess> Arguments <nHandle> Dos file handle set> Offset of the first byte of the region to be locked. <nBytes> Number of bytes to be locked. Returns <lSuccess> .T. if the lock was removed, else .F. Description This function attempts to … Continue reading

Rate this:

FT_NWSEMUNLOCK

FT_NWSEMUNLOCK() “Unlock” a semaphore locked by FT_NWSEMLOCK() Syntax FT_NWSEMUNLOCK( <nHandle> ) -> lRet Arguments <nHandle> is the semaphore handle returned from FT_NWSEMLOCK() Returns lRet == .t. if you successfully unlock the semaphore, .f. if you don’t. If this call fails, it could be that you’re passing an invalid semaphore handle. Description This call unlocks a … Continue reading

Rate this:

C5_UNLOCK

UNLOCK Release file/record locks set by the current user —————————————————————————— Syntax UNLOCK [ALL] Arguments ALL releases all current locks in all work areas. If not specified, only the lock in the current work area is released. Description UNLOCK is a network command that releases file or record locks set by the current user. Use it … Continue reading

Rate this:

C5_DBUNLOCKALL

DBUNLOCKALL() Release all locks for all work areas —————————————————————————— Syntax DBUNLOCKALL() –> NIL Returns DBUNLOCKALL() always returns NIL. Description DBUNLOCKALL() releases any record or file locks obtained by the current process for any work area. DBUNLOCKALL() is only meaningful on a shared database in a network environment. It is equivalent to calling DBUNLOCK() on every … Continue reading

Rate this:

C5_DBUNLOCK

DBUNLOCK() Release all locks for the current work area —————————————————————————— Syntax DBUNLOCK() –> NIL Returns DBUNLOCK() always returns NIL. Description DBUNLOCK() releases any record or file locks obtained by the current process for the current work area. DBUNLOCK() is only meaningful on a shared database in a network environment. DBUNLOCK() performs the same function as … Continue reading

Rate this:

C5_DBRUNLOCK

DBRUNLOCK() Release all or specified record locks —————————————————————————— Syntax DBRUNLOCK([<xIdentity>]) –> NIL Arguments <xIdentity> is a unique value guaranteed by the structure of the data file to reference a specific item in a data source (database). In a .dbf <xIdentity> is the record number. In other data formats, <xIdentity> is the unique primary key value. … Continue reading

Rate this: