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

Method close

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

Closes the wrapped ResultSet. Call this when you are done using these Results.

()

Source from the content-addressed store, hash-verified

645 * Closes the wrapped ResultSet. Call this when you are done using these Results.
646 */
647 @Override
648 public void close() {
649 try {
650 results.close();
651 statement.close();
652 } catch (SQLException e) {
653 sneakyThrow(e);
654 }
655 }
656
657 }
658

Callers 1

forEachMethod · 0.95

Calls 2

sneakyThrowMethod · 0.80
closeMethod · 0.65

Tested by

no test coverage detected