DbcManager.Open Method | |
Open a DBC file. This does NOT make the database the active database
Namespace:
XSharp.RDD
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax 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
)
Request Example
View SourceParameters
- cFileName
- Type: String
Filename of the database to open. - lShared
- Type: Logic
Should the database be opened in Shared mode - lReadOnly
- Type: Logic
Should the database be opened Readonly - lValidate
- Type: Logic
Should the structure of the database be validated.
Return Value
Type:
LogicTRUE when opened succesfully. When the database was already open then FALSE is returned.
See Also