Hibernate version:
Hibernate 3.0
Name and version of the database you are using:
Oracle 8.1.7
JDBC Driver:
Oracle JDBC driver for Oracle 8i : classes12.jar
hibernate.cfg.xml configuration File:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.connection.username">use</property>
<property name="hibernate.connection.password">pass</property>
<property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@myServer:MySID</property>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
</session-factory>
</hibernate-configuration>
Error Summary
I have a GenericJDBCException thrown when I try to use the Hibernate Artifact Generation wizard of the Hibernate Tools alpha4 plugin for Eclipse IDE.
I've add the Oracle driver jar to the classpath in the Hibernate console Configuration, and I'm sure it is the good version for my dataBase.
Is it possible to have more informations about the reason that causes the exception to be thrown such as a "hibernateError.log" ? Because the Exception that is thrown seems to be the more Generic Hibernate JDBC Exception and do not give me any informations about the problem that occurs.
Also, if anybody had the same problem or thinks he knows where the problem comes from, he's welcome :D
Hope my English's not too bad ... French man speaking English ... ;)