• 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:

JDBC Connection to MS Access DB without ODBC

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I have see a connection with a Oracle DB :
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver())...
I search the same but for a MS Access DB...(without � JDBC-ODBC bridge because it is for a software)
Bye
Greg
 
gunslinger & author
Posts: 169
16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is no direct driver for MS-Access. You have to go through the JDBC-ODBC bridge.
Until recently, you couldn't get to MS SQL Server, either, without a commercial tool. About a year ago MS finally licensed and modified a driver from DataDirect that you can now download.
 
Grégoire Berclaz
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a driver for mySQL?
@+
Greg
 
Ranch Hand
Posts: 327
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gr�goire Berclaz:
Is there a driver for mySQL?
@+
Greg


Yes!
reply
    Bookmark Topic Watch Topic
  • New Topic