CoreDb.SetRelation Method | |
Relate a specified work area to the current work area.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD SetRelation(
cAlias AS STRING,
oKey AS ICodeblock,
cKey AS STRING,
cName AS STRING
) AS LOGIC
public static bool SetRelation(
string cAlias,
ICodeblock oKey,
string cKey,
string cName
)
Request Example
View SourceParameters
- cAlias
- Type: String
Alias of child area. - oKey
- Type: ICodeblock
- cKey
- Type: String
Relational key as string. - cName
- Type: String
Name of the relation. Defaults to the parent alias + "_" + Child alias
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks This function is like DBSetRelation() 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.
See Also