@Override
public byte getByte(String name) throws SQLException {
Datum datum = cur.get(findColumn(name));
handleNull(datum);
return datum.asByte();
}
@Override
public byte[] getBytes(int fieldId) throws SQLException {
Datum datum = cur.get(fieldId - 1);