SQLColumn Constructor (Typed) | |
Construct an SQL column.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oHyperLabel AS HyperLabel,
oFieldSpec AS FieldSpec,
oType AS Type,
nScale AS SHORT,
lNullable AS LOGIC,
nIndex AS LONG,
cColName AS STRING,
cAlias AS STRING
)
public SQLColumn(
HyperLabel oHyperLabel,
FieldSpec oFieldSpec,
Type oType,
short nScale,
bool lNullable,
int nIndex,
string cColName,
string cAlias
)
Request Example
View SourceParameters
- oHyperLabel
- Type: HyperLabel
The hyperlabel for the SQL column. - oFieldSpec
- Type: FieldSpec
The field specification for the SQL column. - oType
- Type: Type
- nScale
- Type: Short
The decimal precision of the SQL column. This is specified only when the ODBC data type is numeric. - lNullable
- Type: Logic
Specify TRUE if the value can be NULL; otherwise, FALSE. - nIndex
- Type: Long
The SQL column number. - cColName
- Type: String
The SQL column name. - cAlias
- Type: String
The SQL column alias name.
See Also