Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In jdbc, how to check, that we are using oracle 8i database?

share|improve this question

3 Answers

up vote 5 down vote accepted
Connection connection = DriverManager.getConnection(url);
DatabaseMetaData meta = connection.getMetaData();
String product = meta.getDatabaseProductName();
String major = meta.getDatabaseMajorVersion();
String minor = meta.getDatabaseMinorVersion();
share|improve this answer
Thanks @duffymo, i have another questin. Will meta.getDatabaseProductName().contains("8i") be enough to check that we're using oracle 8i? Can oracle driver return another string? Or can another oracle driver used with another oracle db return string that contains "8i"? – sidslog May 23 '11 at 16:59
I don't know. I don't have multiple instances of Oracle available to me to try it. If you do, I'd recommend writing a small Java class with a main method containing the lines that I gave you and try it out with different connection URLs. Be an experimentalist. – duffymo May 23 '11 at 19:55

You might have to use the Database metadata class.

share|improve this answer

Run:

select * from v$version

It should produce something like:

Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
...

Then it's just a simple matter of parsing that 1st result row.

share|improve this answer
Unfortunately, that only works for an Oracle database. The JDBC DatabaseMetaData approach works for a variety of databases. – Stephen C May 23 '11 at 12:46
@Stephen C: The DatabaseMetaData approach does seem to be a better solution, and it has my upvote; however, the question was specifically about an Oracle db...I had assumed the OP knew he was using Oracle, and just wanted to find out the version. – Tom Tresansky May 23 '11 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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