DbcManager.Open 方法 | |
Open a DBC file. This does NOT make the database the active database
命名空间:
XSharp.RDD
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 STATIC METHOD Open(
cFileName AS STRING,
lShared AS LOGIC,
lReadOnly AS LOGIC,
lValidate AS LOGIC
) AS LOGIC
public static bool Open(
string cFileName,
bool lShared,
bool lReadOnly,
bool lValidate
)
查看代码参数
- cFileName
- 类型:String
Filename of the database to open. - lShared
- 类型:Boolean
Should the database be opened in Shared mode - lReadOnly
- 类型:Boolean
Should the database be opened Readonly - lValidate
- 类型:Boolean
Should the structure of the database be validated.
返回值
类型:
BooleanTRUE when opened succesfully. When the database was already open then FALSE is returned.
参见