How come every time I try to grab a number (integer) field from an Oracle database, I have to receive it in SilverStream as a BigDecimal? How come I can't use Integer, Long, Double, Number...?
Get it as an Object and then convert it to Integer or to string or whatever
Object intkijk = agData.getProperty("INTTEST.INTTEST"
Integer intkijk2 = (Integer) intkijk;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.