Freigeben über


relative Method (SQLServerResultSet)

Moves the cursor the given amount of rows, relative to the current row, in either a positive or negative direction.

public boolean relative(int nRows)

Parameter

nRows

An int that indicates the number of rows to move.

Rückgabewert

true if the cursor is on a row. Otherwise, false.

Ausnahmen

SQLServerException

Hinweise

This relative method is specified by the relative method in the java.sql.ResultSet interface.

Trying to move beyond the first or last row in the result set positions the cursor before or after the first or last row. Calling relative(0) is valid, but does not change the cursor position.

Calling the method relative(1) is identical to calling the next method. Calling the method relative(-1) is identical to calling the previous method.

Siehe auch

Verweis

SQLServerResultSet Class

Konzepte

SQLServerResultSet Methods
SQLServerResultSet Members