SqlDataRecord.GetValues Method
Returns the values for all the columns in the record, expressed as common language runtime (CLR) types, in an array.
Namespace: Microsoft.SqlServer.Server
Assembly: System.Data (in System.Data.dll)
Parameters
- values
- Type: System.Object[]
The array into which to copy the values column values.
Implements
IDataRecord.GetValues(Object[])| Exception | Condition |
|---|---|
| ArgumentNullException | values is null. |
| InvalidCastException | There is a type mismatch. |
The CLR type values of the column are copied into the values array that is passed as a parameter. For columns with null value, Value is returned.
The length of the values array does not need to match the number of columns in the record. If the array length is greater than the number of columns, all of the column values are copied into the array; if it is less, only the array length number of column values is copied into the array, starting at the column value with ordinal 0.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.