发布日期:2017-03-02 16:01:18

一、如何获取JDBC的jar包?
    1.<ORACLE_HOME>/jdbc/lib
    2.http://www.Oracle.com/technetwork/database/features/jdbc/index-091264.html
    
二、JDBC driver 版本 与 JDK版本的关系
 
From JDBC FAQ on Oracle Technology Network (OTN), the OCI or Thin JDBC drivers versions support the following Javasoft's JDK versions :

JDBC Driver JDK version Mapping

 三、JDBC driver与数据库版本的兼容性

Backward Compatibility 

The JDBC drivers are certified to work with the currently supported versions of Oracle
Database. For example, the JDBC Thin drivers in Oracle Database 11g Release 1 (11.1)
are certified to work with the 10.2.x, 10.1.x, 9.2.x, and 9.0.1.x Oracle Database releases.
However, they are not certified to work with older, unsupported database releases,
such as 8.0.x and 7.x.
 
Forward Compatibility 
Existing and supported JDBC drivers are certified to work with Oracle Database 11g
Release 1 (11.1).
Although the main features will work it can happen that new features of a database version 
cannot be used by older drivers. Therefore, it is recommended to use at least the same version 
for the JDBC Driver as the version of the database


oracle推荐使用和数据库版本相同的JDBC Driver

所以相对一个比较稳定的产品而言,随着时间的推移,对platform升级的支持需要考虑到jdk, jdbc相应的升级。

 

发表评论