-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDBC.jl is truncating values while retrieving Floating point numbers from Oracle #18
Comments
Ah... this need FixedPoint decimal numbers. Wonder if Java uses BigDecimal for these? |
@bmharsha is it possible to replicate this in Java, and see what values come out? |
@aviks I executed following Java program
I did got following output (expected)
Configuration over which this test was conducted
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue is JDBC.jl is retrieving all the floating point columns as Float32, this is resulting in values being truncated while retrieving.
Following steps can be used to reproduce this issue
Data is being inserted correctly because when you retreive these columns as a String, expected values show up
_Configuration_
This issue was reproduced on following configurations
DBMS = Oracle Database 11g Express Edition
Julia version 0.4.2
JDBC.jl was upto-date with the master
DBMS = Oracle Database 11g Express Edition
Julia version 0.4.1
JDBC.jl was upto-date with the master
The text was updated successfully, but these errors were encountered: