Folks,
once more inheritance issue:
we have a problem where updates on super class only, are not persist to the Database.
assuming we have the following classes:
class a{
id PK;
name;
}
class b extends a{
id2 PK;
name2;
}
and we have a super reference descriptor from class a to b as follows :
<reference-descriptor name="super"
class-ref="a" auto-retrieve="true" auto-update="true">
<foreignkey field-ref="id2"/>
</reference-descriptor>
when updating the name in class a the record in the Table doesn't change
please HELP what could be the reason ?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]