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