Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3
Mapping documents:
Code between sessionFactory.openSession() and session.close():
Full stack trace of any exception that occurs:
Name and version of the database you are using:
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
This is a piece of code (using hibernate pluging for eclipse):
Code:
/**
* The method has been copied here to be able to add specific xdoclet
* tag for this class.
* @hibernate.id type="java.lang.Integer" column="MyId" generator-class="native"
* @hibernate.generator-param name="sequence" value="SEQ_POIL1"
*/
public Integer getId() {
return super.getId();
}
/**
* @return Returns the poilNumber.
*
* @uml.property name="poilNumber"
* @hibernate.property type="java.lang.Integer" column="poil_nb" generator-class="native"
* @hibernate.generator-param name="sequence" value="SEQ_POIL2"
*/
public Integer getPoilNumber() {
return poilNumber;
}
I try to use 2 sequences for the same class...It does work.
The second sequence is not generated in the output mapping!
Any one can help?
Thanks.