SQLValue Constructor | |
Construct a SQLValue object.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oHyperLabel,
oFieldSpec,
nODBCType,
nScale,
lNullable
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public SQLValue(
Usual oHyperLabel = default,
Usual oFieldSpec = default,
Usual nODBCType = default,
Usual nScale = default,
Usual lNullable = default
)
Request Example
View SourceParameters
- oHyperLabel (Optional)
- Type: Usual
The hyperlabel for the SQL value. - oFieldSpec (Optional)
- Type: Usual
The column specification for the SQL value. - nODBCType (Optional)
- Type: Usual
The ODBC data type of the SQL value (for example, SQL_INTEGER, SQL_CHAR, SQL_FLOAT, etc.). Refer to your ODBC documentation for a complete list of ODBC data types that are available. - nScale (Optional)
- Type: Usual
The decimal precision of the SQL value. This is specified only when the ODBC data type is numeric. - lNullable (Optional)
- Type: Usual
Specify TRUE if the value can be NULL; otherwise, FALSE.
See Also