CoreDb.UseArea Method (Logic, Type, String, String, Logic, Logic) | |
Open a database file.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD UseArea(
lNew AS LOGIC,
RddType AS Type,
cName AS STRING,
cAlias AS STRING,
lShare AS LOGIC,
lReadOnly AS LOGIC
) AS LOGIC
public static bool UseArea(
bool lNew,
Type RddType,
string cName,
string cAlias,
bool lShare,
bool lReadOnly
)
Request Example
View SourceParameters
- lNew
- Type: Logic
Open RDD in new Workarea ? - RddType
- Type: Type
- cName
- Type: String
Name of the (dbf) file to open - cAlias
- Type: String
Alias to use for the Workarea - lShare
- Type: Logic
Should the file be opened shared ? - lReadOnly
- Type: Logic
Should the file be opened readonly ?
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks This function is like DBUseArea() but strongly typed.
This function, however, does not call the error
handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.
The LastRddError property in the runtimestate
will contain needed information about any error that occurs.
Tip |
---|
VoDbUseArea() and CoreDb.UseArea() are aliases |
See Also