vote up 3 vote down star

i need to handle resultset returning stored procedures/functions for three databases (oracle, sybase, MS-Server). the procedures/functions are generally the same but the call is a little different in oracle.

statement.registerOutParameter(1, oracle.jdbc.OracleTypes.CURSOR);
.
.
.

statement.execute(); ResultSet rs = (ResultSet)statement.getObject(1);

jdbc doesn't provide a generic way to handle this, so i'll need to distinguish the different types of DBs in my code. i'm given the connection but don't know the best way to determine if the DB is oracle. i can use the driver name but would rather find a cleaner way.

ideas? thanks much.

flag

1 Answer

vote up 2 vote down

I suspect you would want to use the DatabaseMetaData class. Most likely DatabaseMetaData.getDatabaseProductName would be sufficient, though you may also want to use the getDatabaseProductVersion method if you have code that depends on the particular version of the particular database you're working with.

link|flag

Your Answer

Get an OpenID
or

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