SqlDataReader.GetByte(Int32) 方法

定义

以字节的形式获取指定列的值。

public:
 override System::Byte GetByte(int i);
public:
 virtual System::Byte GetByte(int i);
public override byte GetByte (int i);
public byte GetByte (int i);
override this.GetByte : int -> byte
abstract member GetByte : int -> byte
override this.GetByte : int -> byte
Public Overrides Function GetByte (i As Integer) As Byte
Public Function GetByte (i As Integer) As Byte

参数

i
Int32

从零开始的列序号。

返回

Byte

作为字节形式的指定列的值。

实现

例外

指定的强制转换无效。

注解

不执行转换;因此,检索的数据必须是字节。

调用 IsDBNull 以在调用此方法之前检查 null 值。

适用于

另请参阅