To identify the JDBC driver your WLS uses, go to <domain_dir>/config/jdbc and open the sub data file, check the driver-name value in the file.
To determine the driver version , check from which .jar the driver is loaded (start WLS with -verbose:class ) - the flag name will contain the version number. Alternatively, you can use java -jar my-jdbc-file.jar , which will print the driver version. OJDBC drivers are usually stored in a file called ojdbc6.jar or ojdbc7.jar , etc.
source share