Moves to the next row in the wrapped ResultSet. Note that this method is called immediately when the Results object is constructed, and does not need to be called to retrieve the items in the first row. @return True if there is another row available in the wrapped ResultSet
()
| 538 | * @return True if there is another row available in the wrapped ResultSet |
| 539 | */ |
| 540 | public boolean next() { |
| 541 | try { |
| 542 | return results.next(); |
| 543 | } catch (SQLException e) { |
| 544 | sneakyThrow(e); |
| 545 | return false; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | /** |
| 550 | * Performs an operation on every row in these Results, passing itself each time it iterates to a new row |
no test coverage detected