0

したがって、このエラーは特定の 2 行のコードが原因であるという結論に達しました。

$notification_object->flag = true;
$notification_object->save();

スローするようです:

SQLSTATE[08P01]: <<Unknown error>>: 7 ERROR:  bind message supplies 0 parameters, but prepared statement "pdo_stmt_0000000f" requires 1

誰でも理由を知っていますか?

要求された詳細情報

では、$notifications_object はどのように作成されるのでしょうか?

$notifications_table = new Users_Model_NotificationsMapper();
$notifications = $notifications_table->findByUserAndId($request, $identity->id);

次にループします。

foreach($notifications as $notification_object){
    //Do some code

   //We need to now update a value in the database,
   //essentially in the row we just got back.

   $notifications_object->flag = true;
   $notifications_object->save();

}
4

0 に答える 0