当 $dbh->beginTransaction() 返回 FALSE 时我该怎么办?从哪里可以获得有关错误原因的更多信息?

发布于 2024-08-16 12:42:22 字数 155 浏览 3 评论 0原文

如果 PDO 的 beginTransaction() 失败,则返回 false。在这里最好做什么?这就是我要做的:如果它返回 false,我想将某些内容记录到文件中。

我真的不确定 array PDO::errorInfo ( void ) 是否是我的朋友?这会包含更多信息吗?

If PDO's beginTransaction() fails, it returns false. What would be the best thing to do here? Here's what I'm about to do: If it returns false, I want to log something to a file.

I'm really not sure if array PDO::errorInfo ( void ) is my friend here? Would that contain more information?

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

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

发布评论

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

评论(1

梦巷 2024-08-23 12:42:22

您几乎回答了自己的问题,在 PDO 中获取错误信息的唯一其他方法是:(

PDO::errorCode

无论如何,它已经包含在 errorInfo 数组中

它包含 PDO 可用的所有错误信息。

如果出于某种原因它没有返回错误,那么我'我将不得不与 Alix Axel 一起讨论这一问题,并猜测这与当前 RDBMS 不支持的事务有关

You pretty much answered your own question, the only other method to obtain error information in PDO is:

PDO::errorCode

(which is already included in the errorInfo array anyway

It contains all error information available to PDO.

If for whatever reason it returns no error then I'm going to have to go with Alix Axel on this one and guess that it has something to do with transactions not being supported by the current RDBMS

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