AdomdDataReader.GetOrdinal Method (String)

 

Returns the ordinal position of the specified column.

Namespace:   Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

public int GetOrdinal(
    string name
)
public:
virtual int GetOrdinal(
    String^ name
) sealed
abstract GetOrdinal : 
        name:string -> int
override GetOrdinal : 
        name:string -> int
Public Function GetOrdinal (
    name As String
) As Integer

Parameters

Return Value

Type: System.Int32

An Integer that contains the ordinal position of the specified column.

Implements

IDataRecord.GetOrdinal(String)

Remarks

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.

See Also

AdomdDataReader Class
Microsoft.AnalysisServices.AdomdClient Namespace

Return to top