JDBC-ODBC Bridge

When would you use a JDBC-ODBC Bridge?

Questions by sharmanandita

Showing Answers 1 - 12 of 12 Answers

raghuBavani

  • Nov 20th, 2009
 

When ever, someone wants to access microsoft oriented databases such as MS Access, MS SQL server, you have to use the JDBC-ODBC bridge. In general, it is recommended not to use this type of bridge. Can anyone answer why it is not recommeded?

We use JDBC-ODBC bridge only when pure JDBC drivers are not available [say for connecting to a database] otherwise pure Java drivers are a good optoion.

The use of JDBC-ODBC drivers isn't recommended very much as ODBC would add an extra layer of interaction b/w the Java drivers and the actual database to be used i.e. ODBC layer would sit in between the database and Java drivers layer and extra calls to ODBC would be needed to connect to the desired database thereby slowing down the application performance and HENCE its not recommended.

Anything else, please let me know.

Thanks,
Vinay

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions