There is no support for Oracle data types BINARY_FLOAT and BINARY_DOUBLE. Attempts to read fields with these data types will return nil.
For reading, you can use the SQL"cast" function to cast the field as a float.
For example, if MyTable contains binary_float field BF and binary_double field BD, you can use the following statement in the openCursor:* call:
select cast(BF as float), cast(BD as float) from MyTable
Last updated: 1/22/19