Reputation:
Hibernate version 4.3.0 does not support Oracle 12c dialect. Oracle 10g dialect works for 12c but is there a downside of doing this?. Does using mismatched dialect and database version impact performance?, The quality of the SQL's fired?
Upvotes: 1
Views: 6307
Reputation: 21113
You are free to take the source of Oracle12cDialect
and add it to your application's source with any modifications to make it compliant with Hibernate 4.3. All you need to do is to manually add the hibernate.dialect
property and specify the name of your custom Oracle 12 dialect class.
The Oracle12cDialect
in Hibernate 5.2 provides the following differences from 10g:
LONGVARBINARY
to prefer BLOB
.sequence
Upvotes: 2