Learner
Learner

Reputation: 91

Hibernate Dialect 10g for Oracle Database 19C

I'm using hibernate which is 3.2.4 and having Oracle 12C DB with Oracle10gDialect. Now am thinking to upgrade Oracle DB to Oracle 19C.

For Upgrading to 19c, whether "org.hibernate.dialect.Oracle10gDialect" will be supported along with hibernate-3.2.4?

Upvotes: 0

Views: 4539

Answers (1)

Navigatron
Navigatron

Reputation: 2105

As mentioned in another question, you will need Java 8+ to use Oracle 19c.

Hibernate 3.2.4 is very old and likely does not support Java 8+, Hibernate 5.0 only supports Java 5,6,7.

To upgrade to Oracle 19c, you will need to upgrade Hibernate to version 5.4+ beforehand.

Upvotes: 2

Related Questions