Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbTableDbTableRows"

From emotive
Jump to navigation Jump to search
Line 13: Line 13:
 
{{Note|NOTE — The appropriate MVCI system operation is MCDDbTable::getDbTableRows[]::getKey::getValueAsString; MCDDbTable::getDbTableRows}}
 
{{Note|NOTE — The appropriate MVCI system operation is MCDDbTable::getDbTableRows[]::getKey::getValueAsString; MCDDbTable::getDbTableRows}}
  
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns all table rows contained in this table as a [[Core.DataTypes.ComplexDataType.ContainerDataType.Map|Map]]<[[Core.DataTypes.SimpleDataType.String|String]],[[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]]>.}}
+
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.Map|Map]] | Returns all table rows contained in this table as a [[Core.DataTypes.ComplexDataType.ContainerDataType.Map|Map]]<[[Core.DataTypes.SimpleDataType.String|String]],[[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]]>.}}
  
 
== Properties ==
 
== Properties ==

Revision as of 04:55, 19 September 2018

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);

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 NOTE — 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

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
GetDbComChannelDbSubComponents
GetDbSubComponentDbTables