AdomdDataReader.GetOrdinal 方法

Returns the ordinal position of the specified column.

命名空间:  Microsoft.AnalysisServices.AdomdClient
程序集:  Microsoft.AnalysisServices.AdomdClient(在 Microsoft.AnalysisServices.AdomdClient.dll 中)

语法

声明
Public Function GetOrdinal ( _
    name As String _
) As Integer
用法
Dim instance As AdomdDataReader 
Dim name As String 
Dim returnValue As Integer 

returnValue = instance.GetOrdinal(name)
public int GetOrdinal(
    string name
)
public:
virtual int GetOrdinal(
    String^ name
) sealed
abstract GetOrdinal : 
        name:string -> int  
override GetOrdinal : 
        name:string -> int
public final function GetOrdinal(
    name : String
) : int

参数

返回值

类型:System.Int32
An Integer that contains the ordinal position of the specified column.

实现

IDataRecord.GetOrdinal(String)

注释

GetOrdinal performs a case-insensitive lookup.

GetOrdinal is kana-width insensitive.

Because ordinal-based lookups are more efficient than named lookups, it is inefficient to call GetOrdinal within a loop. Save time by calling GetOrdinal once and assigning the results to an integer variable for use within the loop.

请参阅

参考

AdomdDataReader 类

Microsoft.AnalysisServices.AdomdClient 命名空间