• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

regarding JDBC-ODBC Bridge Driver

 
Ranch Hand
Posts: 142
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi...
I have small doubt on Type-1 JDBC Driver. actually Type-1 JDBC Driver is a JDBC-ODBC Bridge driver plus ODBC driver.My doubt is The Bridge is implemented in Java and uses Java native methods to call ODBC and ODBC uses the native API of DB server.so isn't it nternally this bridge contain ODBC driver right?so what is need of another ODBC driver(JDBC-ODBC Bridge driver plus ODBC driver)?suppose if I'm thinking wrong please correct me.
 
author
Posts: 4335
39
jQuery Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, you still need an ODBC driver that talks with the database directly. Take a look at:
http://en.wikipedia.org/wiki/JDBC_driver#Type_1_Driver_-_JDBC-ODBC_bridge
 
reply
    Bookmark Topic Watch Topic
  • New Topic