Java 7 的 JDBC 驱动程序
我想知道哪个 JDBC 驱动程序适合 Java 7 即 Java 版本 1.7.0_01 和 Oracle 10g/11g 数据库?
I want to know that which JDBC driver is suitable for Java 7 i.e. Java Version 1.7.0_01 and for Oracle 10g/11g Database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速搜索“oracle jdbc driver”可找到此页面 在 Oracle 网站上,您可以下载各种版本的 Oracle 驱动程序。选择数据库版本后,链接会将您带到一个页面,您可以在其中根据您使用的 Java 版本选择要下载的适当类型的驱动程序 - 选择最新的可用驱动程序(即使它只显示“适用于 JDK 1.4”)和 1.5”或“JDK 1.6”)。
A quick search for "oracle jdbc driver" finds this page on Oracle's website, where you can download the drivers for various versions of Oracle. After selecting a database version, the links take you to a page where you can select the appropriate type of driver to download based on the version of Java you're using - pick the latest one available (even if it only says "for JDK 1.4 and 1.5" or "JDK 1.6").
“Java 以其向后兼容性而自豪,旧版本的驱动程序将在 Java 7 上运行。”
无论如何,Java 1.7新功能的实现,例如java.sql.Connection实现AutoCloseable(1.7中的新接口),我希望有一个合适的驱动程序。
"Java prides itself on backward compatibility and the older version of the drivers will work on Java 7."
Anyhow, the implementation of new features of Java 1.7 such as java.sql.Connection implementing AutoCloseable (new interface in 1.7), I would expect a suitable Driver.