外键违规:7错误

问题描述:

我真的是新手在这个东西。事情是...我有文章网站。人们可以评价那里的文章。如果没有人评价,我可以删除文章。但如果有人额定文章中,我不断收到以下错误:外键违规:7错误

PDOException: SQLSTATE[23503]: Foreign key violation: 7 ERROR: update or delete on table "article" violates foreign key constraint "article_rating_item_id_fkey" on table "article_ratings" 
DETAIL: Key (id)=(xxxx) is still referenced from table "article_ratings". in /libs/Nette/loader.php:3515 @ http://www.xxxxxx/admin/articleedit/3578?do=deletearticle @@ exception-2014-09-29-18-14-37-b625334b3e569cb7661f1704256874c1.htm 

当我检查该文件中,有跟随着代码:

public function handleDeletearticle($id) 
     { 
      $article = $this->context->createArticles()->get($id); 
      $this->context->createArticles()->where("id", $id)->delete(); 
      $this->flashMessage('Done', 'success'); 
      $this->redirect('Admin:articles'); 
     } 

能否请你帮我如何解决它?谢谢你在前进

编辑:这是它的外观Articles.php

public function selectArticleWithRating($slug) 
{ 
    $article = $this->query("Select article.*, COUNT(rating.id) AS plus, COUNT(rating2.id) AS minus, \"user\".avatar, \"user\".username 
    FROM article 
    LEFT JOIN rating AS rating ON rating.item_id=article.id and rating.type='article' and rating.rate=1 
    LEFT JOIN rating AS rating2 ON rating2.item_id=article.id and rating2.type='article' and rating2.rate=0 
    LEFT JOIN \"user\" ON \"user\".id=article.user_id 
    WHERE slug='$slug' 
    GROUP BY article.id, \"user\".id"); 

    return $article; 
} 

不应该有article_ratings

+3

您需要首先删除'article_ratings'中的通讯记录行,因为您有'外部文章'的外键,它*具有*来引用'article'。 – h2ooooooo 2014-10-01 13:06:41

+0

谢谢。有办法如何做到这一点在文件中,或者我必须在数据库中做到这一点? – Charmed 2014-10-01 13:10:20

+0

我不知道你的数据库类,但我相信你可以做到这一点。查询是'DELETE FROM table WHERE column = value'。 – h2ooooooo 2014-10-01 13:11:07

它真的在你得到的错误信息中这么说,你有一个外键引用冲突。这意味着您要删除其数据库中的某处所引用的行,它甚至会告诉你在哪里:

is still referenced from table "article_ratings" 

您可以通过使用ON DELETE CASCADE http://www.mysqltutorial.org/mysql-on-delete-cascade/

有一个删除闯民宅行以及问题的SO覆盖此位置:MySQL on delete cascade. Test Example

而且很好的解释在这里:https://dba.stackexchange.com/questions/44956/good-explanation-of-cascade-on-delete-update-behavior

编辑:在Postgres的:

CREATE TABLE order_items (
    product_no integer REFERENCES products ON DELETE RESTRICT, 
    order_id integer REFERENCES orders ON DELETE CASCADE, 
    quantity integer, 
    PRIMARY KEY (product_no, order_id) 
); 

http://www.postgresql.org/docs/9.3/static/ddl-constraints.html

+0

谢谢。即使对于postgresql它会工作吗? – Charmed 2014-10-01 13:22:11

+0

看起来像这样:http://www.postgresql.org/docs/9.3/static/ddl-constraints.html – 2014-10-01 13:23:39

+0

谢谢。我道歉。我真的很愚蠢。我无法访问数据库。仅通过FTP访问文件。有没有选择呢? – Charmed 2014-10-01 16:52:00

作为另一种选择通过@hebron依赖于改变外键级联删除行为给出了答案,你可能会发现你的代码中更简单易懂(即不依赖于“隐藏的”数据库行为)在连接中删除。

DELETE articles, article_ratings 
FROM articles 
LEFT JOIN article_ratings 
    ON articles.id = article_ratings.article_id /* or whatever your foreign key name is */ 
WHERE articles.id = ? 
+0

谢谢。这会有帮助吗? '公共职能selectArticleWithRating($蛞蝓) \t { \t \t $文章= $这个 - >查询(“选择的文章。*,COUNT(rating.id)为正,COUNT(rating2.id)为负,\ “用户\”。化身,\ “用户\”。用户名 \t \t FROM文章 \t \t LEFT JOIN评级AS评级ON rating.item_id = article.id和rating.type = '项目' 和rating.hodnoceni = 1 \t \t LEFT JOIN评分AS rating2 ON rating2.item_id = article.id和rating2.type ='article'and rating2.hodnoceni = 0 \t \t LEFT JOIN \“user \”ON \“use r \“.id = article.user_id \t \t WHERE slug ='$ slug' \t \t GROUP BY article.id,\”user \“.id”); \t \t return $ article; \t}' – Charmed 2014-10-01 15:59:19

+0

@Charmed会帮助什么? – 2014-10-01 17:24:20

+0

我的意思是......如果我可以将您的代码插入到我在下面发布的代码中? – Charmed 2014-10-01 18:34:45