Click or drag to resize

DbServer.ConcurrencyControl Property (Typed)

X#
A constant, identifying the mode of automatic concurrency control for this data server, determining when and how records are locked and released:

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

Property Value

Type: Usual
A constant, identifying the mode of automatic concurrency control for this data server, determining when and how records are locked and released:
Remarks
One of the following constants, identifying the mode of automatic concurrency control for this data server, determining when and how records are locked and released:
ConstantDescription
CCNONEThe data server provides no automatic record locking; the application is required to do all locking explicitly.
CCOPTIMISTIC No locks are maintained continuously except when appending—the record just appended is locked, and the lock is only released when moving off the record or explicitly calling the DataServer or DBServer Unlock() method. For all other records, the record is reread from disk before any update is done. This is the default.
CCSTABLEThe record that the window is sitting on is always kept locked. Note that when in browse view, the row that the cursor is on represents the current record.
CCREPEATABLEAll records that have been read are maintained locked. The user is guaranteed that when moving back among previously viewed data, they are unchanged.
CCFILEAll the records in the entire set provided by the server are locked throughout. This is not very practical for windows associated with all the records of a server, since it would correspond to a file lock. It is intended to be used in conjunction with method DBServer:SetSelectiveRelation().
Examples
This example sets up the Sales:Init() method to accept the open mode for the server as an argument. Then, the oDBSales server is opened using CCNONE, indicating that any application using this server must supply code for explicit locking:
X#
1CLASS Sales INHERIT DBServer
2...
3METHOD Init(kOpenMode) CLASS Sales
4...
5SELF:ConcurrencyControl := kOpenMode
6FUNCTION CreateSales()
7LOCAL oDBSales AS Sales
8oDBSales := Sales{CCNONE}
9...
See Also