I have the ID of my table set to autoincrement in MySql 5.1
How do I map my Hibernate with autoincrements set in DBMS?
I tried this way :
<id name="id" type="int" column="ID" >
<generator class="assigned"/>
</id>
Though it doesn't show any error, it does not add anything. Thanks in advance.