...
1 | Type | Name | Comment |
2 | SdaiServerContext | serverContextId | Context identification, from edmiDefineServerContext |
3 | SdaiString | remoteRepositoryName | Specifies the name of the remote edmRepository that contains the edmModel. Repository names are case sensitive. |
4 | SdaiString | remoteModelName | Specifies the name of the remote edmModel that contains the instances to query. Model names are case sensitive. |
5 | SdaiString | entityName | Specifies the name of the entity. Entity names are case insensitive. Use the option SUBTYPES to include all subtypes of this entity. |
6 | SdaiString | condition | The condition that the instances in the instance 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 instance type specified by the argument <entityName>. The expression may also refer to attributes of referenced application instances. |
7 | SdaiInteger | options | See description of available options below. Options may be joined by using the bitwise OR operator |
8 | SdaiString | attributes | Specification of the title and contents of each column of the returned query result table. The following examples illustrate the syntax. |
9 | SdaiVoid | include_exclude_filter | A zero-terminated buffer of entityIds or a NULL-terminated buffer of string pointers to entity names. This argument is only applicable when the option SUBTYPES is used.
|
10 | SdaiString | orderBy | Name of the query result column to use for sorting. The column may be specified with its constructor or by the column title. If the <attributes> argument is: |
11 | SdaiInteger | index |
|
12 | SdaiInteger | numberOfHits |
|
13 | SdaiQueryResult | queryResult | A variable that will receive the result of the query. |
14 | SdaiString | xmlConfigurationName | The name of the XML configuration to apply to the resulting XML formatted query result when the option XML_FORMAT is used. |
15 | 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. |
16 | 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. |
17 | SdaiInvocationId | edmiInvocationId | Currently not used. |
...