Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.3 KB

File metadata and controls

44 lines (32 loc) · 1.3 KB
title absolute Method (SQLServerResultSet)
description absolute Method (SQLServerResultSet)
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference
apilocation sqljdbc.jar
apiname SQLServerResultSet.absolute
apitype 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