Where to close java PreparedStatements and ResultSets?

后端 未结 13 2148
忘了有多久
忘了有多久 2020-11-29 02:26

Consider the code:

PreparedStatement ps = null;
ResultSet rs = null;
try {
  ps = conn.createStatement(myQueryString);
  rs = ps.executeQuery();
  // process         


        
相关标签:
13条回答
  • 2020-11-29 02:59

    Also note:

    "When a Statement object is closed, its current ResultSet object, if one exists, is also closed. "

    http://java.sun.com/j2se/1.5.0/docs/api/java/sql/Statement.html#close()

    It should be sufficient to close only the PreparedStatement in a finally, and only if it is not already closed. If you want to be really particular though, close the ResultSet FIRST, not after closing the PreparedStatement (closing it after, like some of the examples here, should actually guarantee an exception, since it is already closed).

    0 讨论(0)
  • 2020-11-29 03:00

    I usually have a utility method which can close things like this, including taking care not to try to do anything with a null reference.

    Usually if close() throws an exception I don't actually care, so I just log the exception and swallow it - but another alternative would be to convert it into a RuntimeException. Either way, I recommend doing it in a utility method which is easy to call, as you may well need to do this in many places.

    Note that your current solution won't close the ResultSet if closing the PreparedStatement fails - it's better to use nested finally blocks.

    0 讨论(0)
  • 2020-11-29 03:01

    For file I/O, I generally add a try/catch to the finally block. However, you must be careful not to throw any exceptions from the finally block, since they will cause the original exception (if any) to be lost.

    See this article for a more specific example of database connection closing.

    0 讨论(0)
  • 2020-11-29 03:01

    Don't waste your time coding low-level exception management, use an higher-level API like Spring-JDBC, or a custom wrapper around connection/statement/rs objects, to hide the messy try-catch ridden code.

    0 讨论(0)
  • 2020-11-29 03:01

    Building on @erickson's answer, why not just do it in one try block like this?

    private void doEverythingInOneSillyMethod(String key) throws MyAppException
    {
      try (Connection db = ds.getConnection();
           PreparedStatement ps = db.prepareStatement(...)) {
    
        db.setReadOnly(true);
        ps.setString(1, key);
        ResultSet rs = ps.executeQuery()
        ...
      } catch (SQLException ex) {
        throw new MyAppException("Query failed.", ex);
      }
    }
    

    Note that you don't need to create the ResultSet object inside the try block as ResultSet's are automatically closed when the PreparedStatement object is closed.

    A ResultSet object is automatically closed when the Statement object that generated it is closed, re-executed, or used to retrieve the next result from a sequence of multiple results.

    Reference: https://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html

    0 讨论(0)
  • 2020-11-29 03:07

    In Java 7, you should not close them explicitly, but use automatic resource management to ensure that resources are closed and exceptions are handled appropriately. Exception handling works like this:

    Exception in try | Exception in close | Result
    -----------------+--------------------+----------------------------------------
          No         |        No          | Continue normally
          No         |        Yes         | Throw the close() exception
          Yes        |        No          | Throw the exception from try block
          Yes        |        Yes         | Add close() exception to main exception
                     |                    |  as "suppressed", throw main exception
    

    Hopefully that makes sense. In allows pretty code, like this:

    private void doEverythingInOneSillyMethod(String key)
      throws MyAppException
    {
      try (Connection db = ds.getConnection()) {
        db.setReadOnly(true);
        ...
        try (PreparedStatement ps = db.prepareStatement(...)) {
          ps.setString(1, key);
          ...
          try (ResultSet rs = ps.executeQuery()) {
            ...
          }
        }
      } catch (SQLException ex) {
        throw new MyAppException("Query failed.", ex);
      }
    }
    

    Prior to Java 7, it's best to use nested finally blocks, rather than testing references for null.

    The example I'll show might look ugly with the deep nesting, but in practice, well-designed code probably isn't going to create a connection, statement, and results all in the same method; often, each level of nesting involves passing a resource to another method, which uses it as a factory for another resource. With this approach, exceptions from a close() will mask an exception from inside the try block. That can be overcome, but it results in even more messy code, and requires a custom exception class that provides the "suppressed" exception chaining present in Java 7.

    Connection db = ds.getConnection();
    try {
      PreparedStatement ps = ...;
      try {
        ResultSet rs = ...
        try {
          ...
        }
        finally {
          rs.close();
        }
      } 
      finally {
        ps.close();
      }
    } 
    finally {
      db.close();
    }
    
    0 讨论(0)
提交回复
热议问题