...
1 | Type | Name | Comment |
2 | SdaiServerContext | serverContextId | Context identification, from edmiDefineServerContext |
3 | SdaiInstance | currInst | The instance Id that uniquely identifies the application instance in the remote EDMdatabasefor which the given condition shall be checked for all its external references. |
4 | SdaiVersion | version | The version number of the edmModel to run the query on. The version number is a sequense number counting from one by increments of one. Use version 0 for current version. |
5 | SdaiString | condition | The condition that the instances in the reference aggregate shall match. A NULL or empty string condition will match all the instances in the aggregate. A valid condition is any Express-X logical expression that refers to any number of attributes defined for the reference instance type. Because the reference aggregate may contain instances of any type, the situation where the condition referees to attributes that are not defined for that particular instance type may occur. In this case, the logical expression will evaluate to xpxUNKNOWN. Hence, that instance will not be considered matching the condition. |
6 | SdaiOptions | options | See description of available options below. Options may be joined by using bitwise OR operator |
7 | SdaiString | attributes | Specification of the title and contents of each column of the returned query result table. The following examples illustrate the syntax. |
8 | SdaiVoid | include_exclude_filter | A zero-terminated buffer of entityIds or a NULL-terminated buffer of string pointers to entity names.
|
9 | SdaiString | orderBy | Name of the query result column to use for sorting. The column may be specified by its constructor or by the column title. |
10 | SdaiInteger | index |
|
11 | SdaiInteger | numberOfHits |
|
12 | SdaiQueryResult | queryResult | A variable that will receive the result of the query. Use edmiFreeQueryResult to release allocated memory. |
13 | SdaiString | xmlConfigurationName | The name of the XML configuration to apply to the resulting XML formatted query result when the option XML_FORMAT is used. |
14 | SdaiString | resultString | Variable that will receive the returned XML, HTML or ASCII formatted query result when the option RESULT_IN_STRING is used with one of the options HTML_FORMAT, ASCII_FORMAT or XML_FORMAT. |
15 | SdaiString | resultFileName | The name of the file that will contain the returned XML, HTML or ASCII formatted query result. Only applicable when using the RESULT_IN_FILE option in combination with one of the options HTML_FORMAT, ASCII_FORMAT or XML_FORMAT. |
16 | SdaiInvocationId | edmiInvocationId | Currently not used. |
...