• 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

How to use MS-Access with Hibernate

 
Ranch Hand
Posts: 328
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,
How to use MS-Access with Hibernate? What value we should specify for hibernate.dialect in Hibernate.properties?


Thanx in Advance
Shrinivas
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its not one of the officially supported (or community supported) databases for Hibernate. No surprise there, its not really an RDBMS. So the unhelpful answer is: don't bother trying to use Hibernate with Access. If you need a database for development purposes, try something like HypersonicSQL or MySQL.
 
Ranch Hand
Posts: 163
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Paul Sturrock:
Its not one of the officially supported (or community supported) databases for Hibernate. No surprise there, its not really an RDBMS. So the unhelpful answer is: don't bother trying to use Hibernate with Access. If you need a database for development purposes, try something like HypersonicSQL or MySQL.



Not officially supported, but I believe you can try it with their GenericDialect. Use the JDBC-ODBC bridge for the driver, of course.
 
Shrinivas Mujumdar
Ranch Hand
Posts: 328
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So i should write net.sf.hibernate.GenericDialect for Dialect property?

Shrinivas
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
please try below link:

https://www.hibernate.org/80.html
http://www.hxtt.com/hibernate.html

it might be useful for you

reply
    Bookmark Topic Watch Topic
  • New Topic