SqlDataRecord::GetSqlValues Method
Returns the values for all the columns in the record, expressed as SQL Server types, in an array.
Assembly: System.Data (in System.Data.dll)
Parameters
- values
- Type: array<System::Object>
The array into which to copy the values column values.
| Exception | Condition |
|---|---|
| ArgumentNullException | values is nullptr. |
| InvalidCastException | There is a type mismatch. |
The SQL Server type values of the column are copied into the values array that is passed as a parameter. For null values, a Sql type instance is returned where the IsNull property is true.
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 are copied into the array, starting at the column value with ordinal 0.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.