使用資料庫時,通常需要在應用程式中擷取資料並進行操作。實現此目的的一種方法是使用 ResultSet,它提供對資料庫結果的存取。但是,直接傳回 ResultSet 可能會有某些限制。
在提供的程式碼中:
public ResultSet select() { ... return rs; }
該方法嘗試傳回 ResultSet 引用。但是,這種方法可能會導致資源洩漏問題,因為它會使語句和連接保持開啟狀態,從而阻止它們過早釋放。
要克服這些限制,需要更好的方法是將 ResultSet 對應到 JavaBean 集合,然後可以將其作為清單傳回。此方法可確保資料庫資源正確關閉並防止資源外洩。
這裡是實現此方法的修改後的代碼:
public List<Biler> list() throws SQLException { Connection connection = null; PreparedStatement statement = null; ResultSet resultSet = null; List<Biler> bilers = new ArrayList<>(); try { connection = database.getConnection(); statement = connection.prepareStatement("SELECT id, name, value FROM Biler"); resultSet = statement.executeQuery(); while (resultSet.next()) { Biler biler = new Biler(); biler.setId(resultSet.getLong("id")); biler.setName(resultSet.getString("name")); biler.setValue(resultSet.getInt("value")); bilers.add(biler); } } finally { if (resultSet != null) try { resultSet.close(); } catch (SQLException ignore) {} if (statement != null) try { statement.close(); } catch (SQLException ignore) {} if (connection != null) try { connection.close(); } catch (SQLException ignore) {} } return bilers; }
此修改後的方法返回Biler 對象的列表,其中然後可以由應用程序進行操作,而無需擔心與直接回傳ResultSet 相關的資源洩漏問題。
除了上述方法之外,修改後的程式碼還包括一些改進:
透過採用這些實踐,您的資料庫互動將更加健壯、可維護和高效能。
以上是為什麼直接從資料庫查詢返回結果集是一個壞主意?的詳細內容。更多資訊請關注PHP中文網其他相關文章!