DbServer.ReadOnly Property | |
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
public virtual Usual ReadOnly { get; }
Request Example
View SourceProperty Value
Type:
UsualA 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:
1FUNCTION SalesUpdates(oDBServer)
2...
3IF oDBServer:ReadOnly
4RETURN FALSE
5ELSE
6.
7. <Statements TO update server>
8.
9RETURN TRUE
10ENDIF
See Also