Deepa
Deepa

Reputation: 27

What are the softwares or drivers needed to establish database connectivity using JDBC-ODBC driver?

I have Oracle 10g and NetBeans 6v and Apache Tomcat server is that enough to connect to database? Is there any need to have MS SQL server compulserely? Please give me some suggestions..

Upvotes: 0

Views: 415

Answers (3)

Vlad
Vlad

Reputation: 10780

You need to have the Oracle ODBC Driver installed. It's generally found in the Oracle Data Access Components.

Do note that the JDBC-ODBC bridge is only intended for testing! See this wikipedia article also!

Upvotes: 1

SJuan76
SJuan76

Reputation: 24780

With the JDBC-ODBC driver you need to setup the ODBC to the database you want to use. For Oracle, you will need the Oracle ODBC Driver for the host (not the java version).

Usually it is simpler to just use the Java Driver for the database, if available (never has put a link to it), directly from the java program/framework.

Upvotes: 0

never
never

Reputation: 681

The only thing you need is Oracle JDBC driver. It is downloadable from Oracle.com.

Oracle JDBC driver. To tell the truth you only need Java, Oracle JDBC driver and Oracle DB itself. You need Tomcat only if you wish to create web application.

Upvotes: 1

Related Questions