Syntax Element: real
Description
Represents the floating point client type.
Example
This keyword is highlighted
like this.
You can click on keywords and concepts in blue.
types number as real; //... column SomeColumn with DataType = type(number(10, 2));
Notes
- In .NET, this maps to the type System.Decimal
- In Java, this maps to the type java.lang.Double for nullable types
- In Java, this maps to the type double for non-nullable types
Related Use Cases
Other Actions
documentation | all examples for this syntax element | all examples | use cases | concepts | keywords
types