Can we use ojdbc14.jar with Oracel11g and jdk1.5

java, jdbc, oracle11g

Solution

`ojbc14` should work just fine with Oracle11g. The primary differences between `ojbc14` and later versions is the later version support newer versions of the JDBC API, as well as new features of the newer versions of oracle.

If your application gets along with `ojbc14` as it is, there's little reason to upgrade the driver, other than the fact that it's always a good idea to try and track new revisions as they come along, to keep your system current.

Problem

I believe there are different flavors of this questions already asked, but I wanted to confirm this again as we are very close to our release and wanted to validate with the community We have been using Oracle10g and java 1.5 for quite some time now with ojdbc14.jar. I know that ojbc14.jar is catered towards java 1.4. But thankfully we never saw any issue while using this with 1.5 version. Another reason for not moving to ojbc5 was the fact that we did not see ojdbc5.jar in the installed oracle 10g at all. We have upgraded our DB to be 11g now and I did not see ojdbc14.jar. Does this mean we have to move to ojdbc5.jar? We are willing to make the change. But can the people who made the switch confirm if they saw any issue when they changed the JDBC driver to ojdbc5.jar from ojdbc14.jar Related to it, it would be good if someone can elaborate little more about dms flavors of this jar and how it is to be used.

Original source