The JDBC-ODBC bridge is

Options
- Three tiered
- Multithreaded
- Best for any platform
- All of the above


CORRECT ANSWER : Multithreaded

Discussion Board
jdbc-odbc bridge driver

please kindly help me to find answer of this question .
If it is asked in our exam what should we select ?

Vaishnavi Aurangabadkar 04-17-2018 12:53 AM

No its not multithreaded

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. In addition, deadlocks can occur between locks held in the database and the semaphore used by the Bridge.

Akash 02-24-2015 02:41 AM

JDBC ODBC

JDBC-ODBC Bridge is a multithreaded system as it allows the applications that are written in Java language to use the JDBC API with many existing ODBC drivers. The Bridge acts like a driver that is based on JDBC technology and also called as JDBC driver. It is defined in the class sun.jdbc.odbc.JdbcOdbcDriver. The Bridge also defines the JDBC sub-protocol ODBC which considered to be having a transitional solution to provide flexibility to the system. JDBC-ODBC is used in various ways due to platform independent nature of it. It allows user to create programs that can easily adapt to pure java drivers.

Rohit Sharma 08-29-2014 02:06 PM

Write your comments

 
   
 
 

Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement