Hi,
(sorry, no english)
I need a bi-directional mapping between 'Project' <-> 'ProjectTeam'. OJB set the relation form 'Project' to 'ProjectTeam' nice, but the link from 'ProjectTeam' to
'Project' was not updated. What is wrong? Thanks for help.
<class-descriptor
class="ProcektTeamVO"
table="projectteam"
>
<field-descriptor
name="id"
column="id"
jdbc-type="INTEGER"
primarykey="true"
autoincrement="true"
>
<field-descriptor
name="projectId"
column="project_id"
jdbc-type="INTEGER"
primarykey="false"
nullable="false"
>
<reference-descriptor
name="project"
class-ref="projectVO"
auto-retrieve="true"
auto-update="true"
auto-delete="true"
>
<foreignkey field-ref="projectId"/>
</reference-descriptor>
</class-descriptor><class-descriptor
class="ProjectVO"
table="project"
>
<field-descriptor
name="id"
column="id"
jdbc-type="INTEGER"
primarykey="true"
autoincrement="true"
>
<field-descriptor
name="projectTeamId"
column="projectteam_id"
jdbc-type="INTEGER"
primarykey="false"
nullable="true"
>
<reference-descriptor
name="projectTeam"
class-ref="ProjectTeamVO"
auto-retrieve="true"
auto-update="true"
auto-delete="true"
>
<foreignkey field-ref="projectTeamId"/>
</reference-descriptor>
</class-descriptor>Torsten
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
