odbcfield.getnumeric
Gets the field's value as a fixed point number. This method is applied for fields that contain fixed point numbers. The structure is applied for data of this type, as follows:
type numeric {
long val
uint scale
}
The val field contains the integer representation of a number, and the scale field indicates how many times val is divided by 10 in order to get a real number (a precision number).
method numeric odbcfield.getnumeric (
numeric num
)
numeric num
)
Parameters
num | Result numeric structure. |
Return value
Returns the parameter num.
Related links | Source |