> When I enter data into the related
>feild orderID in the order table the order details field is not updated as I
[quoted text clipped - 3 lines]
>concluded that the delete cascade function seem to work fine. So why does the
>cascade update not work ?
It's working correctly - it's your interpretation that is off!
A relationship does not, and SHOULD not, automagically create a new
empty placeholder record in the child table. A relationship *prevents*
you from adding "orphan" records; it does not create new records.
Normally one would use a Form bound to the order table, with a Subform
bound to the order-details table, with the OrderID as the master/child
link field. When there is data to be entered into the details table
(but not before!), the user would start entering data on the subform;
at that point the new record will be created. There is no need or
benefit to adding empty "placeholder" records.
John W. Vinson[MVP]
Mike_iDbM - 27 Dec 2004 21:37 GMT
Yes , you are absolutely correct thank you for the precise clarification. I
tested your suggestion and the cascade update function works fine once the
record is
created and not before as you say empty placeholders are not a good thing.
This was my first question in this forum and I am truly impressed and
appreciative.
Thanks Again
Mike
> > When I enter data into the related
> >feild orderID in the order table the order details field is not updated as I
[quoted text clipped - 18 lines]
>
> John W. Vinson[MVP]