Ahhhh... I see. I use ColdFusion for server-side language. And I don't use O/R things. So I have to add the logic to delete child data. ok, I got it.
Thank you for quick response!! Shigeru Nakagaki --- In [email protected], Jeff Vroom <[EMAIL PROTECTED]> wrote: > > When you remove an item from an association property, if you want to delete that object you do have to call deleteItem explicitly. Currently removing the object from the association property will only send an "update" change to the parent object. It won't delete the child object. > > Many O/R systems have a cascade="delete" attribute on the association which lets you do the "delete" automatically when the child becomes disassociated but we haven't implemented this feature in LC DS yet. > > This is independent of autoCommit... even if you set autoCommi=true, you'll still need to do the deleteItem explicitly. > > Jeff >

