SQLValue Constructor (Typed) | |
Construct a SQLValue object.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oHyperLabel AS HyperLabel,
oFieldSpec AS FieldSpec,
nType AS Type,
nScale AS SHORT,
lNullable AS LOGIC
)
public SQLValue(
HyperLabel oHyperLabel,
FieldSpec oFieldSpec,
Type nType,
short nScale,
bool lNullable
)
Request Example
View SourceParameters
- oHyperLabel
- Type: HyperLabel
The hyperlabel for the SQL value. - oFieldSpec
- Type: FieldSpec
The column specification for the SQL value. - nType
- Type: Type
- nScale
- Type: Short
The decimal precision of the SQL value. This is specified only when the ODBC data type is numeric. - lNullable
- Type: Logic
Specify TRUE if the value can be NULL; otherwise, FALSE.
See Also