Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hibernate dialect for Oracle Database 11g?

Is there a Hibernate dialect for Oracle Database 11g? Or should I use the org.hibernate.dialect.Oracle10gDialect that ships with Hibernate?

like image 432
Landon Kuhn Avatar asked Dec 06 '10 19:12

Landon Kuhn


1 Answers

Use the Oracle 10g dialect. Also Hibernate 3.3.2+ is required for recent JDBC drivers (the internal class structure changed - symptoms will be whining about an abstract class).

Dialect of Oracle 11g is same as Oracle 10g (org.hibernate.dialect.Oracle10gDialect). Source: http://docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/session-configuration.html#configuration-optional-dialects

like image 144
MJB Avatar answered Sep 28 '22 07:09

MJB