Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 22 down vote accepted

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).

share|improve this answer
Unfortunately does not help for "ORA-01754: a table may contain only one column of type LONG". – Jan Goyvaerts Mar 6 at 10:52

According to supported databases, Oracle 11g is not officially supported. Although, I believe you shouldn't have any problems using org.hibernate.dialect.OracleDialect.

share|improve this answer
7  
Mind that org.hibernate.dialect.OracleDialect is deprecated ( docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/…). You should use the Oracle 10g dialect. – Yonatan Jan 3 '12 at 12:57
3  
Oracle 11 is now supported – MJB Jul 25 '12 at 3:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.