michael wrote:
Yes, hibernate does the cascading itself.
OK, that's good. It must be my error, then, as cascades are not happening for me with MyISAM tables (no error is being returned, it's just not doing any cascading). I'm pretty certain my mapping files are correct, but I'd like to be absolutely certain. If I have a Parent class containing a collection of objects of the Child class and I want the deletion of a Parent to cause the automatic deletion of related Child objects, do I specify 'cascade=delete' in the mapping for the Parent only, or does it need to be specified in the Child mapping as well?