这个问题在这里已有答案:
我收到此错误:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error' in ...
..每当我用PDO执行此代码时:
//Select data from the topic.
$s = $dbh->prepare("SELECT * FROM forum_topics WHERE forum_id=:forum_cat_id AND topic_id=:topicid");
$s->bindParam(':forum_cat_id', $forum_cat_id);
$s->bindParam(':topicid', $topicid);
$s->execute();
$f = $s->fetch();
$s = $dbh->prepare("UPDATE forum_cats
SET
forum_last_postid = :last_post_id, forum_last_posttime = :time,
forum_last_userid = :userid, forum_last_username = :username,
forum_posts=forum_posts+1
WHERE forum_id = :forum_cat_id");
$s->bindParam(':last_post_id', $last_post_id);
$s->bindParam(':time', $time);
$s->bindParam(':userid', $userid);
$s->bindParam(':username', $userdata['username']);
$s->bindParam(':forum_cat_id', $forum_cat_id);
try {
$s->execute();
}
catch(PDOException $e) {
die($e->getMessage());
}
if (count($s->fetchAll()) == 0) {
return 3;
}
我不知道为什么会这样。我检查了查询,我根本找不到任何错误..
这是发生的事情:
对于那些来我这里试图破译这个深奥的错误信息的人,让我补充说:
尝试在pdo语句上运行提取,例如:
$statement->fetchAll();
要么
$statement->fetchAll(PDO::FETCH_ASSOC);
...在INSERT
或UPDATE
**语句之后可能导致此错误(因为没有要获取的数据)。
** UPDATE
... RETURNING
...声明是一个例外。