Click or drag to resize

DbServer.RLockList Property (Typed)

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

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

Property Value

Type: Array
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