I am trying to update a database table from a form, and once in a while I get the error message "you must satisfy the restraint shipping pkey". Can anyone tell me what this means?
I'm not getting everytime. I get it once and then try to submit the update again and it will go through the second time.
Can you share the table definition and the query being used to insert records? The error means that there is a constraint on the table (apparently called “shipping”) that isn’t being met. So perhaps the record being inserted is missing the primary key because whatever is populating that field hasn’t run?