Maddy
Maddy

Reputation: 3816

JDBC driver for oracle connectivity

currently i am using oracle version 10.2.0.3.0 and 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.

Upvotes: 0

Views: 492

Answers (2)

user3029620
user3029620

Reputation: 1537

Pom file :

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

Upvotes: 0

Chandra Sekhar
Chandra Sekhar

Reputation: 19500

Any driver you can use. But Oracle thin Driver (Type 4) is better to use.

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. The files are named as ojdbc14.jar or classes12.jar

Upvotes: 4

Related Questions