SQLColumn 构造函数 | |
构造一个 SQL 列。
命名空间:
XSharp.VO.SDK
程序集:
XSharp.VOSQLClasses (在 XSharp.VOSQLClasses.dll 中) 版本:2.22 GA
语法 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
)
查看代码参数
- oHyperLabel
- 类型:HyperLabel
SQL 列的超链接标签。 - oFieldSpec
- 类型:FieldSpec
SQL 列的字段规范。 - oType
- 类型:Type
- nScale
- 类型:Int16
SQL 列的小数精度。仅当 ODBC 数据类型为数字时才指定。 - lNullable
- 类型:Boolean
如果值可以为 NULL,则指定为 TRUE;否则为 FALSE。 - nIndex
- 类型:Int32
SQL 列的编号。 - cColName
- 类型:String
SQL 列的名称。 - cAlias
- 类型:String
SQL 列的别名。
参见