Classification
OTL Syntax
/// Local Declarations
Map<String, DbParameter> MapVariable;
/// Flow
MapVariable = DiagDataBrowsingPlus.GetDbTableDbTableRows(DbTableTerm);
Description
GetDbTableDbTableRows returns all table rows contained in this table as a Map<String,DbParameter>. The key of the map contains the value of the key associated with the MCDDbTableParameter in the corresponding MCDDbTable. The value contains the related MCDDbTableParameter. The length of the map is zero, if no MCDDbTableParameter is available for this table.
|
|
NOTE — The appropriate MVCI system operation is MCDDbTable::getDbTableRows[]::getKey::getValueAsString; MCDDbTable::getDbTableRows
|
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
DbTable |
DbTable |
Term |
- |
[1..1] |
The element addresses the DbTable (MCDDbTable) which table rows shall be returned.
|
OTL Examples
/// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
Map<String, DbParameter> Map_DbParameter;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_DbTable = DiagDataBrowsingPlus.GetDbSubComponentDbTables(List_DbSubComponent[0]);
Map_DbParameter = DiagDataBrowsingPlus.GetDbTableDbTableRows(List_DbTable[0]);
See also
GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbTables
GetDbComChannelDbSubComponents
GetDbSubComponentDbTables