DbServer.RLockList Property (Typed) | |
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
public virtual Array RLockList { get; }
Request Example
View SourceProperty Value
Type:
ArrayAn 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