在Spring JDBC中,如何在语句上设置RESULT SET HOLDABILITY?
我想准备将 resultSetHoldability
参数设置为 ResultSet.CLOSE_CURSORS_AT_COMMIT
的语句:
PreparedStatement stmnt = conn.prepareStatement(sql, resultSetType, resultSetConcurrency,
ResultSet.CLOSE_CURSORS_AT_COMMIT)
...对于prepareCall 也是如此。我目前正在使用 Spring 的 JdbcTemplate
和 SimpleJdbcCall
,因为它具有方便的 declareParameters()
和 execute(Map paramValues)
> 方法。
那么设置 resultSetHoldability
最简单的方法是什么?
I would like to prepare statements with resultSetHoldability
parameter set to ResultSet.CLOSE_CURSORS_AT_COMMIT
:
PreparedStatement stmnt = conn.prepareStatement(sql, resultSetType, resultSetConcurrency,
ResultSet.CLOSE_CURSORS_AT_COMMIT)
...and the same for prepareCall. I am currently using Spring's JdbcTemplate
and SimpleJdbcCall
, because it has that convenient declareParameters()
and execute(Map paramValues)
methods.
So what would be the simplest way to set resultSetHoldability
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用
JdbcTemplate
上的各种query
方法之一,该方法将PreparedStatementCreator
对象作为第一个参数。您给它一个
PreparedStatementCreator
对象,该对象从提供的Connection
构造PreparedStatement
并返回该对象,例如The easiest way is to use one of the various
query
methods onJdbcTemplate
which take aPreparedStatementCreator
object as their first argument.You give it a
PreparedStatementCreator
object which constructs thePreparedStatement
from the suppliedConnection
, and returns that, e.g.您可以使用以下方法。
连接回调使您可以访问连接对象,该对象具有
setHoldability
方法You could use the following method.
The connectioncallback gives you access to the connection object, which has a
setHoldability
method