Skip to content

Commit

Permalink
0005289: fix recursive call
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jun 2, 2022
1 parent e3c8107 commit 3466926
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -106,7 +106,7 @@ public <T> ISqlReadCursor<T> queryForCursor(String sql, ISqlRowMapper<T> mapper)
public <T> ISqlReadCursor<T> queryForCursor(String sql, ISqlRowMapper<T> mapper,
IConnectionHandler connectionHandler, Object[] args,
int[] types) {
return queryForCursor(sql, mapper, connectionHandler, args, types);
return queryForCursor(sql, mapper, args, types);
}

public <T> ISqlReadCursor<T> queryForCursor(String sql, ISqlRowMapper<T> mapper, boolean returnLobObjects) {
Expand Down

0 comments on commit 3466926

Please sign in to comment.