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

Method Results

src/redempt/redlib/sql/SQLHelper.java:516–524  ·  view source on GitHub ↗
(ResultSet results, PreparedStatement statement)

Source from the content-addressed store, hash-verified

514 private PreparedStatement statement;
515
516 private Results(ResultSet results, PreparedStatement statement) {
517 this.results = results;
518 this.statement = statement;
519 try {
520 empty = !results.next();
521 } catch (SQLException e) {
522 sneakyThrow(e);
523 }
524 }
525
526 /**
527 * @return False if the first call of {@link ResultSet#next()} on the wrapped ResultSet returned false,

Callers

nothing calls this directly

Calls 2

sneakyThrowMethod · 0.80
nextMethod · 0.45

Tested by

no test coverage detected