Click or drag to resize

DbServer.NoIVarGet Method

X#
Provide a general error interception that is automatically called (in any class) whenever an access reference is made to a non-existent exported instance variable. In the DBServer class, it is used to implement the virtual field variable.
Important! NoIVarGet() should not be called directly; it is called by the system for handling invalid references.

Namespace:  VO
Assembly:  VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD NoIVarGet(
	symFieldName
) AS USUAL CLIPPER
Request Example View Source

Parameters

symFieldName (Optional)
Type: Usual
The symbolic name of the variable that was referenced. In the standard usage of the method with the DBServer class, this is a field name.

Return Value

Type: Usual
Remarks
For DBServer, this method is used to intercept references to field names as exported variables, which ordinarily would not be allowed. If the field name is valid, it does FieldGet() for the corresponding field name, in effect turning database fields into Access methods of each DBServer object. See "Objects, Classes, and Methods" in the Programmer's Guide for more information on NoIVarGet().
See Also