对于大量查询,jdbcTemplate.batchUpdate() 出现问题

发布于 2025-01-08 01:10:06 字数 170 浏览 0 评论 0原文

在处理大量查询时,我遇到 JdbcTemplate.batchUpdate(String[] requests) 方法的问题。

该语句正在执行,没有任何异常,但更新未反映在数据库中。我们用的是sybase。查询列表的大小约为 7000+。

以前有人遇到过类似的问题吗?

I am facing an issue with JdbcTemplate.batchUpdate(String[] queries) method when processing bulk of queries.

The statement is getting executed without any exception but updation is not reflected in database. We are using sybase. The size of list of queries is around 7000+.

Have anyone faced similar issue before?

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

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

发布评论

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

评论(1

不离久伴 2025-01-15 01:10:06

感谢您的回复。我明白了这个问题。这是非常愚蠢的编码,没有正确记录。 batchUpdate 在 try 块下被调用,并且在 catch 中它没有记录到记录器而是系统控制台。由于查询之一格式错误,执行引发了异常。

Thanks for your reply. I got the issue. It was very silly coding which was not logged properly. The batchUpdate was called under a try block and in catch it was not logged to logger but system console. The execution thrown exception as one of the queries were malformed.

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