Click or drag to resize

SQLColumnAttributes Constructor (Typed)

X#
Construct an SQLColumnAttributes object.

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,
	cAliasName AS STRING
)
Request Example View Source

Parameters

oHyperLabel
Type: HyperLabel
The hyperlabel for the SQLColumnAttributes object.
oFieldSpec
Type: FieldSpec
The field specification for the SQLColumnAttributes object.
oType
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
TRUE if the value can be NULL; otherwise, FALSE.
nIndex
Type: Long
The SQL column number.
cColName
Type: String
The SQL column name.
cAliasName
Type: String
The SQL column alias name.
Remarks
Tip Tip
Refer to your ODBC documentation for a complete list of ODBC data types that are available.
See Also