cancel
Showing results for 
Search instead for 
Did you mean: 

OracleDialect not found

dcrossma
Champ in-the-making
Champ in-the-making
Hi all,

Have built and installed the latest svn version with mysql and it all works great.

On trying to do an install with an oracle db I get the following.

Dialect class not foundSmiley Surprisedrg.hibernate.dialect.OracleDialect

I have tried both OracleDialect and Oracle9Dialect.

I have checked paths for spaces at the end that may confuse the class path.

The hibernate-3.13.jar is in my WEB-INF/lib director

any ideas would be appreciated.

Cheers Dave
2 REPLIES 2

marcusm
Champ in-the-making
Champ in-the-making
You don't have multiple versions of the Hibernate jar in the class path do you? E.g. one in WEB-INF/lib & one in <CATALINA_HOME>/common/lib.
I've had the problem in the past where I've had multiple versions of the same jar in the classpath, with the net result that they've cancelled each other out.

dcrossma
Champ in-the-making
Champ in-the-making
thanks that was it… so simple when you know how