Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下站点显示了使用 JDBC 的新“AutoClosable”功能:链接。该站点显示了语句将如何自动关闭,但结果集不在自动关闭的 try() 部分中。所以,我的问题是,我不需要直接在 Java 7 中关闭 ResultSets 吗?我一直使用这种模式:关闭结果集、关闭语句、关闭连接。
从ResultSet 的Javadoc:
当生成它的 Statement 对象关闭、重新执行或用于从多个结果序列中检索下一个结果时,ResultSet 对象将自动关闭。