MCPcopy Create free account
hub / github.com/boxbeam/RedLib / next

Method next

src/redempt/redlib/sql/SQLHelper.java:540–547  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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

Callers 10

forEachMethod · 0.95
querySingleResultMethod · 0.45
querySingleResultLongMethod · 0.45
queryResultListMethod · 0.45
queryResultStringListMethod · 0.45
ResultsMethod · 0.45
attemptMigrationMethod · 0.45
updatePageMethod · 0.45

Calls 1

sneakyThrowMethod · 0.80

Tested by

no test coverage detected