Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wonder wether it's possible to add only new Child-Objects into a database when using a Parent-Child relationship. That is, when you add a Parent, the cascade should automatically only add those (new) children which are not in the Database rigth now, i.e. persistent. Can you override a childrens add-method to check this condition or is there any conventient workaround for this?

share|improve this question

1 Answer

You have to use Events for the adding object. Just create one listener for the append event or create event and track your data. You can filter the date on that bases.

You can use the code like

from sqlalchemy import event

def child_append_listener(target, value, initiator):
    print "received append event for target: %s" % target

event.listen(Parent.children, 'append', child_append_listener)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.