@Override
 public void setFetchDirection(int direction) throws SQLException {
   try {
     _res.setFetchDirection(direction);
   } catch (SQLException e) {
     handleException(e);
   }
 }
	public void setFetchDirection(int direction) throws SQLException {
		rs.setFetchDirection(direction);
	}