@Override
 public RowId getRowId(String columnLabel) throws SQLException {
   try {
     return _res.getRowId(columnLabel);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }
 @Override
 public RowId getRowId(int columnIndex) throws SQLException {
   try {
     return _res.getRowId(columnIndex);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }