Difference between revisions of "Extensions.DiagDataBrowsingPlus.DbObject"

From emotive
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:Data Type '''DbObject'''}}Category:DataTypeCategory:DiagDataBrowsingPlus == Classification == {{ClassificationDataType | DbObject | UPDATING... | Core...")
 
Line 1: Line 1:
 
{{DISPLAYTITLE:Data Type '''DbObject'''}}[[Category:DataType]][[Category:DiagDataBrowsingPlus]]
 
{{DISPLAYTITLE:Data Type '''DbObject'''}}[[Category:DataType]][[Category:DiagDataBrowsingPlus]]
 
== Classification ==
 
== Classification ==
{{ClassificationDataType | DbObject | UPDATING... | [[Core.DataTypes.ComplexDataType|Complex Data Type]] | - }}
+
{{ClassificationDataType | DbObject | Represents the MCDDbObject object of a MVCI system| - | [[Core.DataTypes.ComplexDataType|Complex Data Type]] | - }}
  
 
== Description ==
 
== Description ==
UPDATING...<!--
+
'''DbObject''' is the common interface for all data base objects. It defines the basic functionality available for all data base objects.
A '''BlackBox''' is a boxing type. It serves as a transport or base data type which can help the OTX unknown types pass through the code layers.
 
  
 
{{ConversionTable |
 
{{ConversionTable |
Boolean=Returns the Boolean counterpart of the argument term | BooleanSample=<tt>Boolean b = ToBoolean(blackBoxVariable); // Returns true/false/TypeMismatchException</tt> |
+
String=Returns the the ShortName of the related MCDDbObject. | StringSample=<tt>String s = ToString(DbObjectVariable); // Returns the MCDDbObject name
Integer=Returns the Integer counterpart of the argument term | IntegerSample=<tt>Integer i = ToInteger(blackBoxVariable); // Returns integer value/TypeMismatchException</tt> |
 
Float=Returns the Float counterpart of the argument term | FloatSample=<tt>Float f = ToFloat(blackBoxVariable); // Returns float value/TypeMismatchException</tt> |
 
String=Returns the String counterpart of the argument term | StringSample=<tt>String s = ToString(blackBoxVariable); // Returns string value/TypeMismatchException</tt> |
 
ByteField=Returns the ByteField counterpart of the argument term | ByteFieldSample=<tt>ByteField bf = ToString(blackBoxVariable); // Returns byteField value/TypeMismatchException</tt>
 
 
}}
 
}}
-->
 

Revision as of 03:11, 6 September 2018

Classification

Name DbObject
Short Description Represents the MCDDbObject object of a MVCI system
Class -
Base Data Type Complex Data Type
Default Value Empty
Provide a Literal No
SpecifiedBy ISO 13209-3
Standard Compliant Yes

Description

DbObject is the common interface for all data base objects. It defines the basic functionality available for all data base objects.

Core Conversion

The following table shows the rules for conversion to another data type:

Conversion Result Sample
ToBoolean Undefined (should not be used)
ToInteger Undefined (should not be used)
ToFloat Undefined (should not be used)
ToString Returns the the ShortName of the related MCDDbObject. String s = ToString(DbObjectVariable); // Returns the MCDDbObject name
ToByteField Undefined (should not be used)