As I understand it, Oracle stores floats and doubles as X.Y where X is the number of digits prior to the decimal point and Y is the number of decimal places after it. However,
Java uses the IEEE 754 which stores: a sign bit, exponent, and fraction. How do you store these numbers without losing percision?
--Mark