BeginnerAmongBeginners
BeginnerAmongBeginners

Reputation: 279

Microsoft ODBC for Oracle and JDBC

Is the Microsoft ODBC driver for Oracle compatible with JDBC? If so, could an example be given?

Upvotes: 0

Views: 760

Answers (1)

Sualeh Fatehi
Sualeh Fatehi

Reputation: 4784

Java ships with a JDBC-ODBC bridge, so if you can make a connection with ODBC, you can use the JDBC-ODBC bridge. However, the Oracle JDBC driver is to be preferred, since this is software provided by Oracle for connecting to their database. There is a driver for each database server version. The Oracle JDBC driver is a free download (after you create an account)

Upvotes: 1

Related Questions