An error occurred while performing update updates. please kindly advise

Source: Internet
Author: User
An error occurred while performing update updates. please advise public function save (){
If (IS_POST ){
$ Post = I ('post .');
If (! Isset ($ post ['pkid']) | empty ($ post ['pkid']) {
$ Result = $ this-> CourseModel-> addInfo ($ post );
} Else {
$ Result = $ this-> CourseModel-> updateInfo ($ post );
}
If ($ result! = False ){
$ This-> redirect ("Course/index", '', 1, 'saved successfully ');
} Else {
$ This-> redirect ("Course/index", '', 1, 'failed to save ');
}
}
}
Public function updateInfo ($ data = array ()){
If (empty ($ data )){
Return false;
}
$ Data ['modify _ time'] = dateTime ();
Return $ this-> data ($ data)-> save ();
}
ERR: SQLSTATE [23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails ('elearning '. 'course', CONSTRAINT 'course _ ibfk_1 'foreign key ('Category _ id') REFERENCES 'Category' ('pkid') on delete cascade on update cascade)


Reply to discussion (solution)

The modified table has a foreign key constraint. you have modified a record that does not exist.

The modified table has a foreign key constraint. you have modified a record that does not exist.


How can this problem be solved?

You can either cancel the foreign key or confirm that the key exists before modification.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.