DbServer.RLockList Property | |
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
public virtual Usual RLockList { get; }
Request Example
View SourceProperty Value
Type:
UsualAn array of record numbers that are currently locked.
Examples
The following method processes all locked records in the data server:
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
8NEXT
9SELF:Unlock()
See Also