• 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

JDBC Drivers

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Bjarki
Has your work/research for this book exposed you to a variety of vendor & other commercial JDBC drivers? As performance & stability are paramount in e-commerce apps, any opinions would be appreciated. Currently using SQL Server 2000 & Oracle.
 
Author
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
David,
most of my experience with relational databases is with Oracle. Oracle supplies two types of JDBC drivers, OCI and Thin. Since the OCI driver is a Type II driver, that makes use of native code, it might be natural to assume that it would give better performance than the Thin driver. My experience, however, is quite the opposite, especially if you obtain the latest driver edition (for 8.1.7). In addition, it is generally more simple to develop applications with the Thin driver (you are not dependent on Oracle client software at the middle tier). However, there are cases where you must use the OCI driver, such as when using public synonyms through JDBC (doesn't work with Thin). So each type has its cons and pros that must be evaluated for each application in question.
For SQL Server, I have mostly been using the JTurbo JDBC driver from http://www.jturbo.com. But, as I said, I don't work that much with SQL Server in the enterprise, so I don't really have any comparison there.
Cheers,
Bjarki
[This message has been edited by Bjarki Holm (edited June 12, 2001).]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic