Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
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:
I have one - to-one association between tables.I am able to get the records for both tables by querying one table based on the association in my mapping file but while I am trying to insert a record which I am setting in one of the tables and trying to update that one table which should insert the other table too.
<many-to-one name="assoc" class="com.hcsc.heron.model.req.Association" column="AssocId" lazy="false" not-null="true" unique="true" cascade="all" />
<one-to-one name="expPeriod" class="com.hcsc.heron.model.input.ExperiencePeriod" property-ref="assoc" cascade="all"/>
I already have a record in Assoiciation table and need to insert a record in experienceperiod table with AssocID foriegn key.
Could anyone help on this