SQLConnection 构造函数 | |
构造一个 SQL 连接。
命名空间:
XSharp.VO.SDK
程序集:
XSharp.VOSQLClasses (在 XSharp.VOSQLClasses.dll 中) 版本:2.22 GA
语法 CONSTRUCTOR(
cConnStr,
cUserID,
cPassword
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public SQLConnection(
__Usual cConnStr = default,
__Usual cUserID = default,
__Usual cPassword = default
)
查看代码参数
- cConnStr (Optional)
- 类型:__Usual
- cUserID (Optional)
- 类型:__Usual
ODBC 用户 ID。如果未指定,将使用 NULL_STRING 作为默认值。 - cPassword (Optional)
- 类型:__Usual
ODBC 密码(授权字符串)。如果未指定,将使用 NULL_STRING 作为默认值。
备注
如果向此方法提供数据源,将尝试连接;否则,使用 SQLConnection:Connect() 方法。
另一个选项是使用 SQLConnection:DataSource 命名数据源。
参见