Hi!
This is how my simplified association looks like:
I have got an employee and a pc table.
Code:
<hibernate-mapping>
<class name="src.Employee" table="EMPLOYEE">
<id name="id" column="id">
<generator class="increment"/>
</id>
<property name="name"/>
</class>
</hibernate-mapping>
Code:
<hibernate-mapping>
<class name="src.Pc" table="PC">
<id name="id" column="id">
<generator class="increment"/>
</id>
<many-to-one name="emp" cascade="none" not-null="false"/>
</class>
</hibernate-mapping>
The problem I have is that when I want to delete an employee, his pc shouldn't be deleted, the only action which shall take place is that his foreign key (emp) to the employee should be set to null.
I couldn't find anything in the documentation and after searching the forum for hours, I hope that somebody can help me. All I want is a ON DELETE SET NULL statement within the foreign key constraint.
Oh, and I'm using Oracle 9i and Hibernate 3 but this won't matter much anyway, does it?
Thanks for any help,
Markus