(ResultSet results, PreparedStatement statement)
| 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, |
nothing calls this directly
no test coverage detected