sven wrote:
Leave out all the "hibernate." in your hibernate.cfg.xml.
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/gametrixinc</property>
<property name="connection.username">gametrixinc</property>
<property name="connection.password">arena</property>
<property name="connection.pool_size">10</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hbm2ddl.auto">update</property>
<!-- Mapping files -->
<mapping resource="CD.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Best regards
Sven
Thnx for reply
Again the same problem raised ..
Regards
Shanmugam