简体   繁体   English

用于oracle连接的JDBC驱动程序

[英]JDBC driver for oracle connectivity

currently i am using oracle version 10.2.0.3.0 and JDK 1.6. 目前,我正在使用Oracle版本10.2.0.3.0和JDK 1.6。 and as a part of my requirement i need to read large files from database. 作为我要求的一部分,我需要从数据库读取大文件。 (It should support reading LOBS and BLOBs etc) please suggest me Which oracle driver i need to use. (它应该支持读取LOBS和BLOB等),建议我需要使用哪个oracle驱动程序。

Any driver you can use. 您可以使用的任何驱动程序。 But Oracle thin Driver (Type 4) is better to use. 但是Oracle瘦驱动程序(类型4)更好用。

You can download it from this link 您可以从此链接下载

Or otherwise if Oracle Enterprise Edition is installed in your system, then the lib folder must have the required jar files. 否则,如果您的系统中安装了Oracle Enterprise Edition,则lib文件夹必须具有所需的jar文件。 The files are named as ojdbc14.jar or classes12.jar 这些文件名为ojdbc14.jarclasses12.jar

Pom file : Pom文件:

<dependency>
  <groupId>com.oracle</groupId>
  <artifactId>ojdbc14</artifactId>
  <version>10.2.0.3.0</version>
</dependency>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM