当 $dbh->beginTransaction() 返回 FALSE 时我该怎么办?从哪里可以获得有关错误原因的更多信息?
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您几乎回答了自己的问题,在 PDO 中获取错误信息的唯一其他方法是:(
无论如何,它已经包含在 errorInfo 数组中
它包含 PDO 可用的所有错误信息。
如果出于某种原因它没有返回错误,那么我'我将不得不与 Alix Axel 一起讨论这一问题,并猜测这与当前 RDBMS 不支持的事务有关
You pretty much answered your own question, the only other method to obtain error information in PDO is:
(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