How to check the JDBC driver version details.
You can check the details of JDBC version in MANIFEST.MF file of ojdbc6.jar file. You can find this jar file in WLS_HOME\server\lib.
Extract the ojdbc6.jar file and open the MANIFEST.MF. Here you can see the details driver version.
Example:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.5
Created-By: 1.5.0_30-b03 (Sun Microsystems Inc.)
Implementation-Vendor: Oracle Corporation
Implementation-Title: JDBC
Implementation-Version: 11.2.0.3.0
Repository-Id: JAVAVM_11.2.0.3.0_LINUX.X64_110829
Specification-Vendor: Sun Microsystems Inc.
Specification-Title: JDBC
Specification-Version: 4.0
Main-Class: oracle.jdbc.OracleDriver
0