Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the ordinal position of the specified column.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public Function GetOrdinal ( _
As String _
) As Integer
'Usage
Dim instance As AdomdDataReader
DimAs String
Dim returnValue As Integer
returnValue = instance.GetOrdinal()
public int GetOrdinal(
string
)
public:
virtual int GetOrdinal(
String^
) sealed
abstract GetOrdinal :
:string -> int
override GetOrdinal :
:string -> int
public final function GetOrdinal(
: String
) : int
Parameters
- __unnamed0
Type: System.String
The name of the column to find.
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.