Java Database Connectivity Question:
Download Questions PDF

Is the JDBC-ODBC Bridge multi-threaded?

Answer:

No. The JDBC-ODBC Bridge does not support concurrent access from different threads. The JDBC-ODBC Bridge uses synchronized methods to serialize all of the calls that it makes to ODBC. Multi-threaded Java programs may use the Bridge, but they won’t get the advantages of multi-threading.

Download Java Database Interview Questions And Answers PDF

Previous QuestionNext Question
How do you call a Stored Procedure from JDBC?Does the JDBC-ODBC Bridge support multiple concurrent open statements per connection?