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.
问题如标题。 当我在 Java 中使用 ResultSet 时,我发现连接和 PreparedStatement 是否已关闭,我无法从 ResultSet 中读取任何记录。 连接关闭时如何继续读取 ResultSet?
您可能正在寻找断开连接的行集。
但坦率地说,大多数时候,我只是将结果集中的数据转换为 Java 对象列表,然后关闭连接,稍后再使用这个对象列表。