This topic has not yet been rated - Rate this topic

DataTableReader.GetProviderSpecificValues Method

Fills the supplied array with provider-specific type information for all the columns in the DataTableReader.

Namespace:  System.Data
Assembly:  System.Data (in System.Data.dll)
public override int GetProviderSpecificValues(
	Object[] values
)

Parameters

values
Type: System.Object[]

An array of objects to be filled in with type information for the columns in the DataTableReader.

Return Value

Type: System.Int32
The number of column values copied into the array.
ExceptionCondition
DeletedRowInaccessibleException

An attempt was made to retrieve data from a deleted row.

InvalidOperationException

An attempt was made to read or access a column in a closed DataTableReader.

Because the DataTableReader always returns the data of the type stored within the underlying DataColumn, the values returned by calling the GetProviderSpecificValues method is always of the same types as the data stored within the DataTable. When you work with the DataTableReader class, calling the GetProviderSpecificValues method returns the same values and types as calling the GetValues method.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

XNA Framework

Supported in: 3.0, 2.0, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.