Click or drag to resize

DbServer.RLockList Property

X#
An array of record numbers that are currently locked.

Namespace:  VO
Assembly:  VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL PROPERTY RLockList AS USUAL GET 
Request Example View Source

Property Value

Type: Usual
An array of record numbers that are currently locked.
Examples
The following method processes all locked records in the data server:
X#
1CLASS Sales INHERIT DBServer
2...
3METHOD ProcessLocked() CLASS Sales
4LOCAL siCount AS SHORTINT
5FOR siCount := 1 UPTO ALen(SELF:RLockList)
6SELF:GoTo(RLockList[siCount])
7// Process record
8NEXT
9SELF:Unlock()            // Release all locks
See Also