在Spring JDBC中,如何在语句上设置RESULT SET HOLDABILITY?

发布于 2024-10-15 07:54:40 字数 512 浏览 5 评论 0原文

我想准备将 resultSetHoldability 参数设置为 ResultSet.CLOSE_CURSORS_AT_COMMIT 的语句:

PreparedStatement stmnt = conn.prepareStatement(sql, resultSetType, resultSetConcurrency,
    ResultSet.CLOSE_CURSORS_AT_COMMIT)

...对于prepareCall 也是如此。我目前正在使用 Spring 的 JdbcTemplateSimpleJdbcCall,因为它具有方便的 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 技术交流群。

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

发布评论

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

评论(2

背叛残局 2024-10-22 07:54:40

最简单的方法是使用 JdbcTemplate 上的各种 query 方法之一,该方法将 PreparedStatementCreator 对象作为第一个参数。

您给它一个 PreparedStatementCreator 对象,该对象从提供的 Connection 构造 PreparedStatement 并返回该对象,例如

PrepatedStatementCreator psc = new PrepatedStatementCreator() {
   public PreparedStatement createPreparedStatement(Connection conn) {
      return conn.prepareStatement(sql, resultSetType, resultSetConcurrency, 
          resultSetHoldability);
   }
}

jdbcTemplate.query(psc, ...);

The easiest way is to use one of the various query methods on JdbcTemplate which take a PreparedStatementCreator object as their first argument.

You give it a PreparedStatementCreator object which constructs the PreparedStatement from the supplied Connection, and returns that, e.g.

PrepatedStatementCreator psc = new PrepatedStatementCreator() {
   public PreparedStatement createPreparedStatement(Connection conn) {
      return conn.prepareStatement(sql, resultSetType, resultSetConcurrency, 
          resultSetHoldability);
   }
}

jdbcTemplate.query(psc, ...);
表情可笑 2024-10-22 07:54:40

您可以使用以下方法。

   execute(ConnectionCallback action)

连接回调使您可以访问连接对象,该对象具有 setHoldability 方法

You could use the following method.

   execute(ConnectionCallback action)

The connectioncallback gives you access to the connection object, which has a setHoldability method

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