| View previous topic :: View next topic |
| Author |
Message |
lovingmononoke@gmail.com Guest
|
Posted: Tue Jul 25, 2006 3:58 am Post subject: How to check Oracle JDBC Driver (classes12.zip) verion |
|
|
Oracle JDBC driver has been called classes12.zip.
Is there any way that I can check what Oracle database version comes
with the classes12.zip that I am using?
Or is there any way that I can check the JDBC version of the
classes12.zip that I am using?
If so, can you tell me the command ? Many thanks! |
|
| Back to top |
|
 |
mike Guest
|
Posted: Sat Jul 29, 2006 7:00 pm Post subject: Re: How to check Oracle JDBC Driver (classes12.zip) verion |
|
|
Hi,
you can call the following methods in your code
(Connection con = ...)
con.getMetaData().getDatabaseProductVersion());
con.getMetaData().getDriverName()
con.getMetaData().getDriverVersion());
--
mike |
|
| Back to top |
|
 |
John Moore (TeamB) Guest
|
Posted: Mon Jul 31, 2006 2:03 am Post subject: Re: How to check Oracle JDBC Driver (classes12.zip) verion |
|
|
mike wrote:
| Quote: | Hi,
you can call the following methods in your code
(Connection con = ...)
con.getMetaData().getDatabaseProductVersion());
con.getMetaData().getDriverName()
con.getMetaData().getDriverVersion());
--mike
|
1) have you tried it??
2) That driver "may" not support it..
3) in theory, it will work if supported..
John..
--
=============================================
TeamB are volunteer helpers. Please DO NOT REPLY VIA EMAIL!
Post all questions and replies to this newsgroup ONLY
For papers on DataExpress, Applets, JSP, and Web Development go to:
http://www.microps.com/mps/paperFAQ.html
==================================================== |
|
| Back to top |
|
 |
|