Data type terminology
- Last Updated: January 16, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Data type terminology
ABL provides built-in data types, built-in class data types, and user-defined class data types. References to built-in data types follow these rules:
- Like most other keywords, references to specific built-in
data types appear in all
UPPERCASE, using a font that is appropriate to the context; no uppercase reference ever includes or implies any data type other than itself - Wherever integer appears, this is a reference to
the
INTEGERorINT64data type - Wherever character appears, this is a reference
to the
CHARACTER,LONGCHAR, orCLOBdata type - Wherever decimal appears, this is a reference to
the
DECIMALdata type - Wherever numeric appears, this is a reference to
the
INTEGER,INT64, orDECIMALdata type
References to built-in class data types appear in mixed case
with initial caps, for example, Progress.Lang.Object.
References to user-defined class data types appear in mixed case,
as specified for a given application example.