本文介绍了PDO mysql:如何知道插入是否成功的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用PDO插入记录(mysql和php)
I'm using PDO to insert a record (mysql and php)
$stmt->bindParam(':field1', $field1, PDO::PARAM_STR);
$stmt->bindParam(':field2', $field2, PDO::PARAM_STR);
$stmt->execute();
有没有办法知道它是否成功插入,例如如果记录未插入,是一个重复的?
Is there a way to know if it inserted successfully, for example if the record was not inserted because it was a duplicate?
编辑:当然我可以看看数据库,但我的意思是程序化的反馈。
of course I can look at the database, but I mean programmatic feedback.
推荐答案
在成功时返回true。还有,您可以检查错误。
PDOStatement->execute()
returns true on success. There is also PDOStatement->errorCode()
which you can check for errors.
这篇关于PDO mysql:如何知道插入是否成功的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!