Reputation: 3816
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
Reputation: 1537
Pom file :
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.3.0</version>
</dependency>
Upvotes: 0
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