JDBC driver for Oracle 10G XE?

On the machine you have installed the server, Oracle JDBC drivers are in ORACLE_HOME/jdbc/lib . Just put ojdbc14. Jar on your classpath ( ojdbc14_g.

Jar is the same as ojdbc14. Jar except that classes were compiled with "javac -g" and contain some tracing information).

Up vote 2 down vote favorite share g+ share fb share tw.

I have installed Oracle 10G XE. I want to connect to it using JDBC . Which driver should I use for it and from where can I download it?

Thank You. Java oracle jdbc link|improve this question asked Jan 13 '10 at 0:38Sam1313.

On the machine you have installed the server, Oracle JDBC drivers are in ORACLE_HOME/jdbc/lib. Just put ojdbc14. Jar on your classpath (ojdbc14_g.

Jar is the same as ojdbc14. Jar, except that classes were compiled with "javac -g" and contain some tracing information). EDIT: According to Oracle Database 10g Release 2 (10.2.0.4) JDBC Drivers, ojdbc14.

Jar contains classes for use with JDK 1.4 and 1.5 (and I don't see why it wouldn't work with a JDK 6, some features of JDBC 4.0 won't just be available). Some newer drivers are available at Oracle Database 11g Release 2 JDBC Drivers but I don't really see the difference between ojdbc14. Jar and ojdbc15.

Jar (except that ojdbc15. Jar requires a JDK 5+): they are both JDBC 3.0 driver so I think it's just a matter of end of life support for ojbdc14.jar. If you want JDBC 4.0 support, you'll need ojdbc16.

Jar though. Have a look at the Oracle JDBC FAQ if you want more details.

oracle.com/technology/software/tech/java... You generally want the latest JDBC drivers, they will work with older versions of the database as well. Or, to be on the safe side, match the JDBC version with your DB.

In fact, the correct version of the driver should be in the Oracle install tree somewhere after the install is completed. – Otis Jan 13 '10 at 0:59.

According to this getting started guide you need the Oracle Express client which can be found here.

2 You do not need Oracle Express client if you want to use JDBC. There is a pure-Java JDBC driver. – Thilo Jan 13 '10 at 0:58.

You want to choose a JDBC driver that matches both your version of Oracle and the JDK you're using. Ojdbc14. Jar is for JDK 1.4; there are newer versions for at least JDK 5 that I know of.

I'm not sure if there's a JDBC driver for JDK 6. Use the best match to your situation that Oracle makes available.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions