Skip to main content
Version: v18

Data types overview

In 4D, data are handled according to their type in two places: database fields and the 4D language.

Although they are usually equivalent, some data types available at the database level are not directly available in the language and are automatically converted. Conversely, some data types can only be handled through the language. The following table lists all available data types and how they are supported/declared:

Data TypesDatabase support(1)Language supportVariable declaration
AlphanumericYesConverted to text-
TextYesYesC_TEXT, ARRAY TEXT
DateYesYesC_DATE, ARRAY DATE
TimeYesYesC_TIME, ARRAY TIME
BooleanYesYesC_BOOLEAN, ARRAY BOOLEAN
IntegerYesConverted to longintARRAY INTEGER
LongintYesYesC_LONGINT, ARRAY LONGINT
Longint 64 bitsYes (SQL)Converted to real-
RealYesYesC_REAL, ARRAY REAL
Undefined-Yes-
Null-Yes-
Pointer-YesC_POINTER, ARRAY POINTER
PictureYesYesC_PICTURE, ARRAY PICTURE
BLOBYesYesC_BLOB, ARRAY BLOB
ObjectYesYesC_OBJECT, ARRAY OBJECT
Collection-YesC_COLLECTION
Variant(2)-YesC_VARIANT

(1) Note that ORDA handles database fields through objects (entities) and thus, only supports data types available to these objects. For more information, see the Object data type description.

(2) Variant is actually not a data type but a variable type that can contain a value of any other data type.

Default values

When variables are typed by means of a compiler directive, they receive a default value, which they will keep during the session as long as they have not been assigned.

The default value depends on the variable type and category, its execution context (interpreted or compiled), as well as, for compiled mode, the compilation options defined on the Compiler page of the Database settings:

  • Process and interprocess variables are always set "to zero" (which means, depending on the case, "0", an empty string, an empty Blob, a Nil pointer, a blank date (00-00-00), etc.)
  • Local variables are set:
    - in interpreted mode: to zero
    - in compiled mode, depending on the **Initialize local variables** option of the Database settings:
    - "to zero": to zero (see above),
    - "to a random value": 0x72677267 for numbers and times, always True for Booleans, the same as "to zero" for the others,
    - "no": no initialization, meaning whatever is in RAM is used for the variables, like values used before for other variables.
    Note: 4D recommends to use "to zero".

The following table illustrates these default values:

TypeInterprocess/Process (interpreted/compiled), Local (interpreted/compiled "to zero")Local compiled "random"Local compiled "no"
BooleenFalseTrueTrue (varies)
Date00-00-0000-00-0000-00-00
Longint01919382119909540880 (varies)
Time00:00:00533161:41:59249345:34:24 (varies)
Picturepicture size=0picture size=0picture size=0
Real01.250753659382e+2431.972748538022e-217 (varies)
PointerNil=trueNil=trueNil=true
Text""""""
BlobBlob size=0Blob size=0Blob size=0
Objectnullnullnull
Collectionnullnullnull
Variantundefinedundefinedundefined

Converting data types

The 4D language contains operators and commands to convert between data types, where such conversions are meaningful. The 4D language enforces data type checking. For example, you cannot write: "abc"+0.5+!12/25/96!-?00:30:45?. This will generate syntax errors.

The following table lists the basic data types, the data types to which they can be converted, and the commands used to do so:

Data Type to Convertto Stringto Numberto Dateto Timeto Boolean
String (1)NumDateTimeBool
Number (2)StringBool
DateStringBool
TimeStringBool
BooleanNum

(1) Strings formatted in JSON can be converted into scalar data, objects, or collections, using the JSON Parse command.

(2) Time values can be treated as numbers.

Note: In addition to the data conversions listed in this table, more sophisticated data conversions can be obtained by combining operators and other commands.