• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Oracle Driver to Optimize?

 
Ranch Hand
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi...

We all are used to using the Classes/Interfaces in java.sql.* package for DB Related matters?

I was also able to find some Classes in the Oracle JDBC Driver, sometimes with analogy to the ones found in the above...?

Can we achieve any optimizations by using the API provided in the JDBC driver itself..

Please also advice me whether it is in any way specific to storing and querying with Unicode Strings?

Thanks in advance
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'll just say this. The Oracle JDBC driver does not completely implement the JDBC Spec. There are third party Oracle Drivers that are complete and in some ways better. If you use the Oracle specific classes you are tying yourself to the Oracle JDBC Driver and it would require more work for you if you change databases or its drivers.

Mark
 
Deepan Devadasan
Ranch Hand
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mark..

I buy that idea..

So what is the best idea to grab the drivers, if not from Oracle itself for its own DBs


Thanks
 
Mark Spritzler
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Theepan Thevathasan:
Hi Mark..

I buy that idea..

So what is the best idea to grab the drivers, if not from Oracle itself for its own DBs


Thanks



Just because a vendor themselves have a driver doesn't necessarily make it the best. And Oracle does a lot of things that I would call wrong. Like when you install the Oracle client, it puts its stuff up front in the path, which can really cause problems because they use an older JRE, and if you have a newer JRE on your machine, nothing on your machine will really use the newer JRE.

I suggest doing a Google search for other JDBC drivers for Oracle.

Mark
 
Deepan Devadasan
Ranch Hand
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
mark,

resourceful...

Thanks for the thoughts, you justified....
 
reply
    Bookmark Topic Watch Topic
  • New Topic