SqlDataReader.GetInt32 Method
.NET Framework 1.1
Gets the value of the specified column as a 32-bit signed integer.
[Visual Basic] Public Overridable Function GetInt32( _ ByVal i As Integer _ ) As Integer Implements IDataRecord.GetInt32 [C#] public virtual int GetInt32( int i ); [C++] public: virtual int GetInt32( int i ); [JScript] public function GetInt32( i : int ) : int;
Parameters
- i
- The zero-based column ordinal.
Return Value
The value of the specified column.
Implements
Exceptions
| Exception Type | Condition |
|---|---|
| InvalidCastException | The specified cast is not valid. |
Remarks
No conversions are performed; therefore the data retrieved must already be a 32-bit signed integer.
Call IsDBNull to check for null values before calling this method.
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
SqlDataReader Class | SqlDataReader Members | System.Data.SqlClient Namespace