Code Block | ||||
---|---|---|---|---|
| ||||
EdmiError edmiRemoteSetTableInstanceColumnsValue (SdaiServerContext serverContextId, SdaiInstance tableInstanceId, SdaiInteger rowNumber, /* RowNumber = 0 means append new row. First rowNumber is 1 (not zero) */ SdaiInteger columns, /* Number of columns to update */ SdaiInteger columnNumbers[], /* Columns to update. First columnNumber is 1 (not zero) */ SdaiSelect columnValues[], /* Columns value, order is according to order in columnNumbers */ SdaiInteger *rowNumberUpdated, /* RowNumber of updated column */ SdaiInvocationId *edmiInvocationId); |
...
Type | Name | Comment | ||
SdaiServerContext | serverContextId | Remote Server Context | ||
SdaiModelSdaiInstance | modelId | A numeric modelID that uniquely identifies the model that holds the instances to be validated.tableInstanceId |
| |
SdaiInteger | stringEncoding | CHAR_ENCODING_UTF-8 | rowNumber | RowNumber = 0 means append new row. First rowNumber is 1 (not zero) |
SdaiInteger | columns | Number of columns to update | ||
SdaiInteger | columnNumbers | Columns to update. First columnNumber is 1 (not zero) | ||
SdaiSelect | columnValues | Columns value, order is according to order in columnNumbers | ||
SdaiInteger | rowNumberUpdated | RowNumber of updated column | ||
SdaiInvocationId | edmiInvocationId | When the edmiInvocationId is specified, the actual operation will be asynchronous and a handle (identifier) of the call will be returned in the edmiInvocationId argument. |
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Options
...
<Missing options>
Example
...
Code Block | ||
---|---|---|
| ||
<Missing example> |
...