• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

which jdbc driver i am using

 
Ranch Hand
Posts: 689
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
is ther any way to know which driver i am using in my system
i think i am still using same old jdbc1.0 version
my friend told me that there is jdbc 3.0 available in the market

but i think i am also using the same jdbc 3.0 version

but i am not sure about it.
is ther any way to check it?
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Different versions of Java support different versions of the JDBC API. From the API documentation:

JDK 1.6 - JDBC 4.0
JDK 1.4/1.5 - JDBC 3.0
JDK 1.2/1.3 - JDBC 2.0
JDK 1.1 - JDBC 1.0

Apart from that, your JDBC driver might not support all features of a particular JDBC version. What your JDBC driver does and does not support is something that you'll have to lookup in the documentation of your particular JDBC driver.

What database are you using and what JDBC driver?
reply
    Bookmark Topic Watch Topic
  • New Topic