Click or drag to resize

SQLData Constructor (Typed)

X#

Note: This API is now obsolete.

Construct an SQLData object.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax
[ObsoleteAttribute]
 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