Метод IDataReader.GetOrdinal
Return the index of the named field.
Пространство имен: Microsoft.ReportingServices.DataProcessing
Сборки: Microsoft.ReportingServices.SharePoint.UI.WebParts (в Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)
Microsoft.ReportingServices.Interfaces (в Microsoft.ReportingServices.Interfaces.dll)
Синтаксис
'Декларация
Function GetOrdinal ( _
fieldName As String _
) As Integer
'Применение
Dim instance As IDataReader
Dim fieldName As String
Dim returnValue As Integer
returnValue = instance.GetOrdinal(fieldName)
int GetOrdinal(
string fieldName
)
int GetOrdinal(
String^ fieldName
)
abstract GetOrdinal :
fieldName:string -> int
function GetOrdinal(
fieldName : String
) : int
Параметры
- fieldName
Тип: System.String
The name of the field to find.
Возвращаемое значение
Тип: System.Int32
The index of the named field.
Замечания
GetOrdinal performs a case-sensitive lookup first. If it fails, a second case-insensitive search is made.
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.
См. также
Справочник
Пространство имен Microsoft.ReportingServices.DataProcessing