使用 PDO 语句获取受影响的行数和最后插入的 ID

发布于 2024-10-06 05:23:40 字数 479 浏览 4 评论 0原文

如何显示受影响的行数:

$sql = $conn->prepare ("UPDATE countries SET country=:country");
$sql->bindValue(":country", "blablaa");
$sql->execute();

以及如何显示最后插入的 ID:

$sql = $conn->prepare ("INSERT INTO countries (country) VALUES (:country)");
$sql->bindValue(":country", "test");
$sql->execute();
echo $sql->lastInsertId(); // id of last inserted

我尝试过,但收到对未定义方法的错误调用 PDO::lastInsertId()

How can I display the numbers of affected rows in this:

$sql = $conn->prepare ("UPDATE countries SET country=:country");
$sql->bindValue(":country", "blablaa");
$sql->execute();

And how can I show the last inserted ID with this:

$sql = $conn->prepare ("INSERT INTO countries (country) VALUES (:country)");
$sql->bindValue(":country", "test");
$sql->execute();
echo $sql->lastInsertId(); // id of last inserted

I tried, but am receiving an error call to undefined method PDO::lastInsertId()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

左耳近心 2024-10-13 05:23:40

我认为这可以帮助你:

PDOStatement::rowCount()

返回受相应 PDOStatement 对象执行的最后一个 DELETE、INSERT 或 UPDATE 语句影响的行数。
http://php.net/manual/en/pdostatement.rowcount.php

I think this can help you:

PDOStatement::rowCount()

returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object.
http://php.net/manual/en/pdostatement.rowcount.php

赤濁 2024-10-13 05:23:40
$sql->lastInsertId();

需要替换为

$dbh->lastInsertId();

其中 $dbh 是您的 PDO 对象。

请参阅此处了解更多信息。

exec 返回受影响的行数, execute 仅返回 true 或 false 值。

$sql->lastInsertId();

Needs to be replaced with

$dbh->lastInsertId();

Where $dbh is your PDO object.

See here for more information.

exec returns the number of affected rows, execute only returns a true or false value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文