解析 mysql 错误消息 - 这是正确的方法吗?
在我的 php/MySQL 代码中,我将新记录插入到具有许多唯一列键的表(InnoDB)中。如果插入失败(使用 ER_DUP_ENTRY),我需要知道哪一列的值不唯一。
有人告诉我,要实现此目的,您必须从收到的错误消息中提取 %d 的值: “密钥 %d 的条目‘%s’重复”。
这应该可行,但我不喜欢这个解决方案。解析/正则表达式匹配某些字符串会给我总是试图避免的简单任务带来不必要的复杂性。现在的问题是:这是正确的方法吗?难道就没有更好的解决办法吗?
In my php/MySQL code I insert new record into a table (InnoDB) which has many UNIQUE column keys. If insertion fails (with ER_DUP_ENTRY) I need to know which column's value wasn't unique.
I was told that to achieve this, you must extract value of %d from error message you get:
"Duplicate entry '%s' for key %d".
This should work but I don't like the solution. Parsing/regex matching some string gives unnecessary complexity to simple task I always try to avoid. Now the question: is this the right way to go? Isn't there any better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能不仅可以获得错误消息,还可以获得相应的错误代码。例如,请参阅包含
errno
的 PHP 函数的 结果 。It is probably possible to not get just the error message but also the corresponding error code too. See for example the results for PHP functions containing
errno
.