Skip to content
Advertisement

unable to update a child table when a foreign key constraint is added: error :Cannot add or update a child row: a foreign key constraint fails

Please, I have been trying to fix this error, have tried all searches and all solutions given but none is working for me, here are my tables.

JavaScript

what I want to achieve is to have the owner table show the id of the member and structure table, so that if you click on an id of a member it will take you to the member, same goes to location table. but once I enter my data in the form and submit it, only member table and structure table will get their contents, nothing will be on location and owner table, but when I remove the foreign key on location, and resubmit the same form, the location will get it own content now leaving only owner which does not have a field with direct contact with the form.

here is the php code

JavaScript

Apologies for the long post. Thanks guys in advance

Advertisement

Answer

It happens because you cannot insert a location without a structure.

To insert a new location you must make sure that you passed the value of structure_id in the insert statement, in your case that doesn’t happen.

Let’s see your insert statement:

JavaScript

If you notice, structure_id is missing in your query so it is always fails.

To fix it just add it.

JavaScript

We still have to get the last inserted structure_id, because it is not available in our code, so after this line in your php code $stmt_structure->execute(); type the following:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement