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

Method getBytes

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

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)

Source from the content-addressed store, hash-verified

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

Callers 2

exportMethod · 0.80

Calls 1

sneakyThrowMethod · 0.80

Tested by

no test coverage detected