When I save an object, it does not save any related objects, correct? For example,
BillAccount account = new BillAccount(); Address address = new Address(); account.setAddress(address);
account.save(); // This does NOT save the address, right?
Likewise, with deletes I have to manually delete related objects, correct? (I have not yet experimented with specifying foreign key onUpdate and onDelete values.)
Thank you for your help.
Jim -- Jim Menard, [EMAIL PROTECTED], http://www.io.com/~jimm/ "You will notice that BeOS has taken the best parts from all the major operating systems and made them its own. We've got the power of the Unix command line, the ease of use of the Macintosh interface, and Minesweeper from Windows." -- Tyler Riti
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]