vote up 0 vote down star

Need some help regarding jdbc metadata. I am using ResultsetMetaData to get metadata of columns of a table on Oracle10g. I am using ojdbc14.jar. There is a field in table ID declared as Number . This field is being read with jdbc at runtime to get its metadata attributes. ResultSetMetaData.getColumnClassName() is returning java.math.BigDecimal while I am expecting it to be Integer or int or long or Long type. I even tried creating table with statement with explicitly defining int type for ID column as

CREATE TABLE COST_DETAILS ( ID **INT** Primary Key...

but still ResultSetMetaData is returning BigDecimal for ID column.

Is there any way to create table with any particular column type so that it will retrun int/long type?

or is ResultsetMetaData always returns BigDecimal for Oracle.

flag

2 Answers

vote up 2 vote down

I think Oracle numbers will always map to BigDecimal as Oracle does not store them as a binary int so this is an exact mapping. Oracle datatypes and Oracle JDBC You can make floating point numbers come as a binary

link|flag
vote up 0 vote down

No. That's up to the driver.

You can have something like:

if( class == "BigDecimal" ) {
    return "Integer" 
} else if ( ....

And return integer instead of bigdecimal. That's what most people do.

link|flag
@Oscar: huh? where are you supposed to put that code? – Stephen C Sep 14 at 5:09
In an auxiliary method used to determine which java type belongs to which sql type There is actually a class in apache utils library to do something like this, I can't find it though. Something like this: getJavaType( rsmd.getType( column ) ) ; // or something like that – Oscar Reyes Sep 14 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.