Extensions.DiagDataBrowsingPlus.GetDbTableDbTableRows

From emotive
Jump to navigation Jump to search

Classification

Name GetDbTableDbTableRows
Short Description Gets the table rows of the DbTable
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbTable related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

MapTerm DiagDataBrowsingPlus.GetDbTableDbTableRows(DbTableTerm dbTable);

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.

Icons Note.png The appropriate MVCI system operation is MCDDbTable::getDbTableRows[]::getKey::getValueAsString; MCDDbTable::getDbTableRows

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Map Returns all table rows contained in this table as a Map<String,DbParameter>.

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