OleDbDataReader.Item[] 属性

定义

获取以本机格式表示的列的值。

重载

Item[Int32]

在给定列序号的情况下,获取指定列的以本机格式表示的值。

Item[String]

在给定列名称的情况下,获取指定列的以本机格式表示的值。

Item[Int32]

Source:
OleDbDataReader.cs
Source:
OleDbDataReader.cs
Source:
OleDbDataReader.cs

在给定列序号的情况下,获取指定列的以本机格式表示的值。

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public:
 property System::Object ^ default[int] { System::Object ^ get(int index); };
public override object this[int index] { get; }
public object this[int index] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(index As Integer) As Object
Default Public ReadOnly Property Item(index As Integer) As Object

参数

index
Int32

列序号。

属性值

以本机格式表示的指定列的值。

实现

例外

传递的索引位于 0 至 FieldCount 的范围之外。

另请参阅

适用于

Item[String]

Source:
OleDbDataReader.cs
Source:
OleDbDataReader.cs
Source:
OleDbDataReader.cs

在给定列名称的情况下,获取指定列的以本机格式表示的值。

public:
 virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public override object this[string name] { get; }
public object this[string name] { get; }
member this.Item(string) : obj
Default Public Overrides ReadOnly Property Item(name As String) As Object
Default Public ReadOnly Property Item(name As String) As Object

参数

name
String

列名称。

属性值

以本机格式表示的指定列的值。

实现

例外

未找到具有指定名称的列。

注解

首先执行区分大小写的查找。 如果失败,则进行第二次不区分大小写的搜索。

此方法不区分假名宽度。

另请参阅

适用于