Hi Patrick,
You mentioned the MYSQL4.1.12 nt. Database. Please Try to check the Hibernate Community Supported Databases.
Reference Link Is :
http://www.hibernate.org/80.html
My Idea is:
1. Try to change the database version (Hibernate Support Database) or
2. If your DB is correct, Please Check the mapping files (*.hbm.xml files)
and check both Database column name and mapping file (*.hbm.xml)
file column name should be same. Try to mention correct
I have a one table: userlogin
It contains username and password both are string type.
This is looking like.
<hibernate-mapping package="hibernate.loginDB">
<class name="Userlogin" table="userlogin">
<id name="username" column="username" type="string">
<generator class="native"/>
</id>
<property name="password" column="password" type="string" not-null="true" />
</class>
</hibernate-mapping>
Try to correctly enter the package (see above hibernate.loginDB)
and DB Column name and hbm.xml file(above code) column name should be same.
Thanks.All the best.