获取 PHP/MySql 中约束错误的键名?

发布于 2024-09-16 00:40:45 字数 103 浏览 8 评论 0 原文

如果我尝试执行因键约束错误而失败的插入,有没有办法可以获取键的名称而不对错误文本进行字符串解析?

我已经知道错误代码是1062;我想找出哪个关键约束失败了:)

If I try to do an insert that fails because of a key constraint error, is there a way I can get the name of the key without doing string parsing of the error text?

I already know the error code is 1062; I want to find out which key constraint failed :)

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

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

发布评论

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

评论(1

表情可笑 2024-09-23 00:40:45

“不对错误文本进行字符串解析?” - 不,据我所知,做类似的事情

preg_match("/for key '(.+)'$", $msg, $matches)

是你最好的机会。

"without doing string parsing of the error text?" - No, as far as I know doing something like

preg_match("/for key '(.+)'$", $msg, $matches)

is your best chance.

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