I have a table in my db with following fields
field1 of type NUMBER(38)
other fields
field2 is of type NUMBER(38)
Now i have some DAOS which provide me this fileld1 information in form of Object
Object field1Value
Now i need to typecase it to a dataType.Which dataType it should be?In my case it is Integer
But why is it getting mapped to Integer, why not Long or BigDecimal ?
Integer is 32 bits but the field is NUMBER 38 in db