Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.34 KB

absolute-method-sqlserverresultset.md

File metadata and controls

44 lines (32 loc) · 1.34 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic apilocation apiname apitype
absolute Method (SQLServerResultSet)
absolute Method (SQLServerResultSet)
David-Engel
davidengel
01/19/2017
sql
connectivity
reference
sqljdbc.jar
SQLServerResultSet.absolute
Assembly

absolute Method (SQLServerResultSet)

[!INCLUDEDriver_JDBC_Download]

Moves the cursor to the given row in this SQLServerResultSet object.

Syntax

  
public boolean absolute(int row)  

Parameters

row

An int that indicates the row number to move to. Can be positive, negative, or 0.

Return Value

true if the cursor is moved to the given position. false if it is before the first row or after the last row.

Exceptions

SQLServerException

Remarks

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

See Also

SQLServerResultSet Members
SQLServerResultSet Class