This documentation is archived and is not being maintained.
IDataRecord.GetBoolean Method
.NET Framework 1.1
Gets the value of the specified column as a Boolean.
[Visual Basic] Function GetBoolean( _ ByVal i As Integer _ ) As Boolean [C#] bool GetBoolean( int i ); [C++] bool GetBoolean( int i ); [JScript] function GetBoolean( i : int ) : Boolean;
Parameters
- i
- The zero-based column ordinal.
Return Value
The value of the column.
Exceptions
| Exception Type | Condition |
|---|---|
| IndexOutOfRangeException | The index passed was outside the range of 0 through FieldCount. |
Remarks
No conversions are performed, therefore the data retrieved must already be a Boolean or an exception is generated.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
IDataRecord Interface | IDataRecord Members | System.Data Namespace
Show: