Bonjour,
Je voudrais savoir les compatibilités entre ojdbc5 et java8?
Ce n'est pas très clair pour moi. Sur le site d'Oracle j'ai cette information:
et sur le site j'ai trouvé une discussion qui dit ceci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 The Oracle JDBC driver is always compliant to the latest JDK version in each of the new releases. In some versions, JDBC drivers support multiple JDK versions. Use the table below to choose the correct JDBC driver based on your preferred JDK version. Oracle Database version JDBC Jar files specific to the release 18.3 ojdbc8.jar with JDK8, JDK9, JDK10, JDK11 12.2 or 12cR2 ojdbc8.jar with JDK 8 12.1 or 12cR1 ojdbc7.jar with JDK 7 and JDK 8 ojdbc6.jar with JDK 6 11.2 or 11gR2 ojdbc6.jar with JDK 6, JDK 7, and JDK 8 (Note: JDK7 and JDK8 are supported in 11.2.0.3 and 11.2.0.4 only) ojdbc5.jar with JDK 5
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 ojdbc5 est un driver pour java 5 minimum qui est compatible à partir d'oracle 9.2. (driver livré en oracle 11) ojdbc6 est un driver pour java 6 minimum qui est compatible à partir d'oracle 9.2. (driver livré en oracle 11 et oracle 12) ojdbc7 est un driver pour java 7 minimum qui est compatible à partir d'oracle 9.2. (driver livré en oracle 12)
Partager