Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.64 KB

File metadata and controls

47 lines (34 loc) · 1.64 KB
title getBoolean Method (int) (SQLServerResultSet)
description getBoolean Method (int) (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.getBoolean (int)
apitype Assembly

getBoolean Method (int) (SQLServerResultSet)

[!INCLUDEDriver_JDBC_Download]

Retrieves the value of the designated column index in the current row of this SQLServerResultSet object as a boolean in the Java programming language.

Syntax

  
public boolean getBoolean(int columnIndex)  

Parameters

columnIndex

An int that indicates the column index.

Return Value

A boolean value.

Exceptions

SQLServerException

Remarks

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

This method is supported only on number and character data types. It converts values "1", 1, and "true" to true, and values "0", 0, and "false" to false. For all other values the behavior is undefined.

See Also

getBoolean Method (SQLServerResultSet)
SQLServerResultSet Members
SQLServerResultSet Class