606162636465666768
init(); } @Override public boolean getBoolean(int fieldId) throws SQLException { Datum datum = cur.get(fieldId - 1); handleNull(datum); return datum.asBool(); }
676869707172737475
return datum.asBool(); } @Override public boolean getBoolean(String colName) throws SQLException { Datum datum = cur.get(findColumn(colName)); handleNull(datum); return datum.asBool(); }
747576777879808182
return datum.asBool(); } @Override public byte getByte(int fieldId) throws SQLException { Datum datum = cur.get(fieldId - 1); handleNull(datum); return datum.asByte(); }
818283848586878889
return datum.asByte(); } @Override public byte getByte(String name) throws SQLException { Datum datum = cur.get(findColumn(name)); handleNull(datum); return datum.asByte(); }
888990919293949596
return datum.asByte(); } @Override public byte[] getBytes(int fieldId) throws SQLException { Datum datum = cur.get(fieldId - 1); handleNull(datum); return datum.asByteArray(); }
9596979899100101102103
return datum.asByteArray(); } @Override public byte[] getBytes(String name) throws SQLException { Datum datum = cur.get(findColumn(name)); handleNull(datum); return datum.asByteArray(); }
102103104105106107108109110
return datum.asByteArray(); } @Override public double getDouble(int fieldId) throws SQLException { Datum datum = cur.get(fieldId - 1); handleNull(datum); return datum.asFloat8(); }
109110111112113114115116117
return datum.asFloat8(); } @Override public double getDouble(String name) throws SQLException { Datum datum = cur.get(findColumn(name)); handleNull(datum); return datum.asFloat8(); }
116117118119120121122123124
return datum.asFloat8(); } @Override public float getFloat(int fieldId) throws SQLException { Datum datum = cur.get(fieldId - 1); handleNull(datum); return datum.asFloat4(); }
123124125126127128129130131
return datum.asFloat4(); } @Override public float getFloat(String name) throws SQLException { Datum datum = cur.get(findColumn(name)); handleNull(datum); return datum.asFloat4(); }