Java
Programming and Technical
Programming
Technical
What are 4 drivers available in JDBC?
At what situation are four of the drivers used?
Read Solution (Total 2)
-
- JDBC-ODBC for standalone application
Native-API partly java for network based application
JDBC Net Pure Java for overcoming library dependency
Native protocol for enterprise application - 11 years agoHelpfull: Yes(0) No(0)
- 1)Bridge Driver-it can able to communicate with many Database,its leggacy driveres,examples are jdbc-odbc driver ,slower in performs,not related to specific db,previously used for Software testing applications...not now
2)Native call drivers-It can able to communicate with a specific database,faster compared to all other drivers ,we can communicate using native calls by implementing JNI(java native inteface),disadvantage is platform dependent
3)Mainframe drivers-implemented by one and oly company thats IBM
4)pure java driver-Faster,platform independent,no native call - 10 years agoHelpfull: Yes(0) No(0)
Java Other Question