Click or drag to resize

DbServer.ReadOnly Property

X#
A logical value indicating whether the file was opened as a read-only file. This is determined by an instantiation parameter of the server.

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

Property Value

Type: Usual
A logical value indicating whether the file was opened as a read-only file. This is determined by an instantiation parameter of the server.
Examples
This example function processes updates against the server only if the ReadOnly property is FALSE; otherwise, the function returns FALSE:
X#
 1FUNCTION SalesUpdates(oDBServer)
 2...
 3IF oDBServer:ReadOnly
 4RETURN FALSE
 5ELSE
 6.
 7. <Statements TO update server>
 8.
 9RETURN TRUE
10ENDIF
See Also