Skip to content

Commit

Permalink
improve getObject support, fixed #3194
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jun 17, 2019
1 parent 8dc5d2d commit 3dda738
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1764,10 +1764,10 @@ public void updateNClob(String columnLabel, Reader reader) throws SQLException {
}

public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
throw new SQLFeatureNotSupportedException();
return rs.getObject(columnIndex, type);
}

public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
throw new SQLFeatureNotSupportedException();
return rs.getObject(columnLabel, type);
}
}

0 comments on commit 3dda738

Please sign in to comment.