解析 mysql 错误消息 - 这是正确的方法吗?

发布于 2024-10-07 03:17:15 字数 276 浏览 6 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(1

浴红衣 2024-10-14 03:17:15

可能不仅可以获得错误消息,还可以获得相应的错误代码。例如,请参阅包含 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.

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