Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1.84 KB

File metadata and controls

56 lines (43 loc) · 1.84 KB
title getBoolean Method (java.lang.String) (SQLServerResultSet) | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
drivers
ms.tgt_pltfrm
ms.topic article
apiname
SQLServerResultSet.getBoolean (java.lang.String)
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid ba98a27b-722d-4904-ac65-0f082fde1fe6
caps.latest.revision 9
author MightyPen
ms.author genemi
manager jhubbard

getBoolean Method (java.lang.String) (SQLServerResultSet)

[!INCLUDEDriver_JDBC_Download]

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

Syntax

  
public boolean getBoolean(java.lang.String columnName)  

Parameters

columnName

A String that contains the column name.

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