isAfterLast Method (SQLServerResultSet)

Download JDBC driver

Retrieves whether the cursor is after the last row in this SQLServerResultSet object.

Syntax

  
public boolean isAfterLast()  

Return Value

true if the cursor is after the last row. false if the cursor is at any other position or if the result set contains no rows.

Exceptions

SQLServerException

Remarks

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

If this method is used with dynamic cursors, including forward-only read-only cursors, and the selectMethod connection property is set to "cursor", an exception will occur.

See Also

SQLServerResultSet Members
SQLServerResultSet Class