We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a26ce3 commit 1b8b49dCopy full SHA for 1b8b49d
src/main/java/com/code/advancedsql/query/ExecuteQuery.java
@@ -53,9 +53,7 @@ public ResultSet fetchAll() throws SQLException {
53
public List<Map<String, Object>> fetchAllAsList() throws SQLException {
54
ResultSet resultSet = this.fetchAll();
55
56
- List<Map<String, Object>> list = ISQL.convertResultSetToList(resultSet);
57
-
58
- return list;
+ return ISQL.convertResultSetToList(resultSet);
59
}
60
61
/**
0 commit comments