I've updated OJB and built to the last CVS release but still have some problem with inheritance.
I've
- class A and B
- B extends A
- to A correspond a table tA
- to B correspond a table tB
- between tA and tB exits an inheritance relation
If I delete an entry on class B (broker.delete(b);), The entry is deleted in table tB but not on table tA! No exception is generated.
In the log is reported that 2 delete query has been generated, but only the query on tB is really executed.
[org.apache.ojb.broker.accesslayer.sql.SqlGeneratorDefaultImpl] DEBUG: SQL:DELETE FROM tB WHERE account_id = ?
[org.apache.ojb.broker.accesslayer.sql.SqlGeneratorDefaultImpl] DEBUG: SQL:DELETE FROM tA WHERE account_id = ?
Thank you
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
