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:

Removal of JDBC-ODBC Bridge from Java 8, what's next?

 
Ranch Hand
Posts: 356
Android Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
https://blogs.oracle.com/Lance/entry/removal_of_the_jdbc_odbc


The article states

I would recommend that you use a JDBC driver provided by the vendor of your database or a commercial JDBC Driver instead of the JDBC-ODBC Bridge.



http://dev.mysql.com/downloads/connector/j/5.0.html I'll have to see if these Drivers work with 8.


Does anyone have any extra input?
 
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
I updated the subject to be a tad more accurate.

As the blog post says, it's old and creaky and unsupported. I'm not sure I see the problem.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Agree with Bear. Any serious DB work should have moved away from the bridge 10 years ago.
 
Sheriff
Posts: 28411
102
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
And since Java 5, the JDK has shipped along with a database -- Java DB, a version of the Apache Derby database. This makes a half-baked ODBC interface even less useful.
 
Jay Orsaw
Ranch Hand
Posts: 356
Android Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Just wanted to throw a heads up is all.... since this is the "what's new in Java 8" section.

Netbeans has it's own DB section which is what I personally have used.
 
author
Posts: 284
35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Now that's one of the things I did not write about in my book, in the interest of not boring the reader with inessential information

I did't imagine that anyone still uses the JDBC-ODBC bridge. For what? To talk to Microsoft Access??? If you do, I feel for you, but there are JDBC drivers for Access.

Cheers,

Cay
 
author & internet detective
Posts: 42148
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator

Cay Horstmann wrote:I did't imagine that anyone still uses the JDBC-ODBC bridge. For what? To talk to Microsoft Access??? If you do, I feel for you, but there are JDBC drivers for Access.


I bet in a year or so we get posters in the jDBC forum all panicked that they upgraded to Java 8 (not so early adopters) and their JDBC code to MS Access no longer works! Egads!
    Bookmark Topic Watch Topic
  • New Topic