There is no need to delete, refresh, update, etc. the relationship you have established between tables once it's been set up.
When you have a relationship, you need to insert the parent row first, so that when you insert the child (dependent) rows, they'll have something to link to. The reverse applies when you delete a row -- you must delete the child rows before deleting the parent, otherwise you get an error (because you would be orphaning the children)
After inserting your data, the relationship allows you to navigate from one to another. ie. Given a parent, find all it's children. And... Given a child, find it's parent.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.