Skip to content

Commit 97cf4bc

Browse files
committed
fix: library updated.
1 parent ddaeaf8 commit 97cf4bc

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/main/java/com/code/advancedsql/query/ExecuteQuery.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@ public ResultSet fetchAll() throws SQLException {
5353
public List<Map<String, Object>> fetchAllAsList() throws SQLException {
5454
ResultSet resultSet = this.fetchAll();
5555

56-
List<Map<String, Object>> list = ISQL.convertResultSetToList(resultSet);
57-
58-
prepare.close();
59-
60-
return list;
56+
return ISQL.convertResultSetToList(resultSet);
6157
}
6258

6359
/**

0 commit comments

Comments
 (0)