Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbDataReader::GetFieldValue<T> Method (Int32)

.NET Framework (current version)
 

Synchronously gets the value of the specified column as a type.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
generic<typename T>
virtual T GetFieldValue(
	int ordinal
)

Parameters

ordinal
Type: System::Int32

The column to be retrieved.

Return Value

Type: T

The column to be retrieved.

Type Parameters

T

Synchronously gets the value of the specified column as a type.

Exception Condition
InvalidOperationException

The connection drops or is closed during the data retrieval.

The SqlDataReader is closed during the data retrieval.

There is no data ready to be read (for example, the first Read hasn't been called, or returned false).

Tried to read a previously-read column in sequential mode.

There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.

IndexOutOfRangeException

Trying to read a column that does not exist.

InvalidCastException

T doesn’t match the type returned by SQL Server or cannot be cast.

For more information, see SqlClient Streaming Support.

Universal Windows Platform
Available since 10
.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft