0

现在我正在使用 Insert Ignore 将一堆元组插入到我的数据库中。但是,我想知道是否实际插入了元组,并在此基础上执行一些操作。代码在 PHP 中:

if(!($stmt4 = $mysqliprivate3->prepare("INSERT IGNORE INTO ".$table." VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"))){
                                echo "Prepare Failed3: (" . $mysqliprivate3->errno . ") " . $mysqliprivate3->error;
                            }
                            else{
                                $stmt4->bind_param("ssisssssssssssss", $id, $dt, $score, $question1, $question2, $question3,$question4,$question5,$question6,$question7,$question8,$question9a,$question9b,$question9c,$question9d,$question9e);
                                $stmt4->execute();
                                $stmt4->close();
                            }
                            //if(inserted){
                                Do something
                            }

我尝试过使用 echo $mysqliprivate3->affected_rows; ,但它似乎给了我一个 1,即使它没有插入任何东西。我还能做什么?

谢谢,

4

1 回答 1

2

尝试这个:

if ($stmt4->affected_rows)
{
    // ...
}
于 2012-07-12T23:16:56.557 回答