删除记录,如果它存在于php / PDO中

时间:2017-06-01 10:59:42

标签: php mysql pdo

我有一些代码可以从MySQL数据库中删除记录,但即使记录不存在,我也会收到成功消息。如果记录不存在但找不到符合我代码的记录,我已经搜索了生成消息的方法。

我的代码是:

try {
    $dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
    /*** echo a message saying we have connected ***/
    //echo 'Connected to database<br />';
    $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $sql = "DELETE FROM ukgh WHERE telephone = :telephone";
    $stmt = $dbh->prepare($sql);
    $stmt->bindParam(':telephone', $telephone, PDO::PARAM_STR);   
    $stmt->execute(); 

    /*** close the database connection ***/
    $dbh = null;
}
catch(PDOException $e) {
    echo $e->getMessage();
}
// once processing is complete
// show success message
echo 'Success - The record for ' . $telephone . ' has been deleted.';
?>

Fred-ii的注意事项 - 您提到的答案是正确的,但我问的问题中的术语是不同的。我问如何确保我删除的RECORD存在。我没有问如何检查一行是否存在,并且当我在寻找现有的RECORD时,我从未想过要搜索有关现有ROW的任何内容。对于像你这样的专家来说,一行可能和唱片一样,但我和其他像我这样不那么开明的人从来没有听过一个叫做行的记录。祝福,Tog

1 个答案:

答案 0 :(得分:3)

使用rowCount();内部尝试通过sql语句检查受影响行的数量

try {
    $dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
    /*     * * echo a message saying we have connected ** */
//echo 'Connected to database<br />';
    $sql = "DELETE FROM ukgh WHERE telephone = :telephone";
    $stmt = $dbh->prepare($sql);
    $stmt->bindParam(':telephone', $telephone, PDO::PARAM_STR);
    $stmt->execute();
    $count = $stmt->rowCount();// check affected rows using rowCount
    if ($count > 0) {
        echo 'Success - The record for ' . $telephone . ' has been deleted.';
    } else {
        echo "Your error message";
    }
} catch (PDOException $e) {
    echo $e->getMessage();
}

阅读http://php.net/manual/en/pdostatement.rowcount.php