对于大量查询,jdbcTemplate.batchUpdate() 出现问题
在处理大量查询时,我遇到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢您的回复。我明白了这个问题。这是非常愚蠢的编码,没有正确记录。 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.