Gets the bytes in the given column in the current row @param column The index of the column to get, starting at 1 @return The bytes in the column
(int column)
| 585 | * @return The bytes in the column |
| 586 | */ |
| 587 | public byte[] getBytes(int column) { |
| 588 | try { |
| 589 | return results.getBytes(column); |
| 590 | } catch (SQLException e) { |
| 591 | sneakyThrow(e); |
| 592 | return null; |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | /** |
| 597 | * Gets a String in the given column in the current row |
no test coverage detected