在 Java/MyBATIS 中检测何时插入重复行

发布于 2024-12-12 10:20:33 字数 344 浏览 2 评论 0原文

我目前在我的项目中使用MyBATIS。

我有时需要运行 INSERT 查询,但忽略我尝试插入的行是否已存在于数据库中,而是处理其他 SQL 错误。

如何发现 SQLException 与主键违规相关?

就像

try {
    sqlMap.insert(query, params);
} catch (DuplicateKeyException ex) {
    //Do nothing, it's OK for mew
} catch (SQLException ex) {
    throw ex;
}

我认为特定的例外并不真正存在......

I am currently using MyBATIS in my project.

I sometimes need to run an INSERT query but ignore if the row I'm trying to insert is already present on DB, but instead handle other SQL errors.

How can I find that the SQLException is related to primary key violation?

Something like

try {
    sqlMap.insert(query, params);
} catch (DuplicateKeyException ex) {
    //Do nothing, it's OK for mew
} catch (SQLException ex) {
    throw ex;
}

I suppose that specific exception doesn't really exist...

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

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

发布评论

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

评论(1

ら栖息 2024-12-19 10:20:33

SQL 不是我的强项,但您可以查看将抛出的 SQLException 中包含的错误代码和 SQL 状态代码。这些可能可以让您更深入地了解查询失败的原因。

SQL isn't my strong point, but you could look into the Error Code and SQL State codes contained within the SQLException that would be thrown. Those may offer more insight into why the query failed.

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