Entering content frame

 int_spec 

Syntax Rules for Describing the Data Stream

Syntax

<int_spec> ::= INTEGER HILO | INTEGER LOHI

INTEGER HILO

The current data stream stores integers so that the byte with the lowest valency is stored first; that is, is furthest right in the binary number (the big endian).

INTEGER LOHI

The current data stream stores integers so that the byte with the highest valency is stored first, that is, the furthest right in the binary number (little endian, byte swap).

Use

Use it to define the representation of integers in data streams. You can only do this for data streams with the FORMATTED BINARY format (binary values). This rule is ignored when you load or unload in data streams that have the COMPRESSED format.

If the representation specified for a data stream does not match the current server, the values are adjusted before being loaded into the database or written to the data stream.

See also:

Data Format

Leaving content frame