Click or drag to resize

SQLData Constructor

X#
Construct an SQLData object.

Namespace:  VO
Assembly:  VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax
 CONSTRUCTOR()
Request Example View Source
Examples
The following example creates an SQLData object and prints the values of SQLData:Null, SQLData:Value, and SQLData:ValueChanged, respectively:
X#
1LOCAL oSQLData
2oSQLData := SQLData{"Test",TRUE,TRUE}
3?oSQLData:Null                    // Returns TRUE
4?oSQLData:Value                // Returns "Test"
5?oSQLData:ValueChanged            // Returns TRUE
See Also