PUT-DOUBLE statement
Stores the 8-byte floating-point value of a DECIMAL expression at the specified memory location.
Syntax
destination
A variable of type RAW or MEMPTR. Ifdestination
is the Unknown value (?
), it remains the Unknown value (?
). Ifdestination
is a MEMPTR and has not had its region allocated (by a SET-SIZE statement or by a Windows dynamic link library (DLL) or UNIX shared library routine), the AVM generates a run-time error.position
An integer value greater than 0 that indicates the byte position where the AVM storesexpression
. Ifposition
is less than 1, the AVM generates a run-time error.For a RAWdestination
, ifposition
is greater than the length ofdestination
, the AVM increases the length ofdestination
toposition
plus the remaining bytes needed to storeexpression
. The gap between the originaldestination
length andposition
is padded with null bytes.For a MEMPTRdestination
, ifposition
is greater than the length ofdestination
or does not leave sufficient room to storeexpression
, the AVM generates a run-time error.expression
ExampleFor examples of how to use the PUT-DOUBLE statement, see the PUT-BYTE statement reference entry.
Notes
- This statement supports byte-swapping only if
destination
is a MEMPTR data type. The statement will first examine the byte-order setting of the MEMPTR and then swap the bytes appropriately while putting the data into the MEMPTR memory.- For more information on accessing DLL routines from ABL, see OpenEdge Development: Programming Interfaces.
See alsoGET-DOUBLE function, LENGTH function, LENGTH statement, RAW function, RAW statement, SET-SIZE statement
OpenEdge Release 10.2B
|