OleDbDataReader::GetValues Method (array<Object^>^)
.NET Framework (current version)
Populates an array of objects with the column values of the current row.
Assembly: System.Data (in System.Data.dll)
Parameters
- values
-
Type:
array<System::Object^>^
An array of Object into which to copy the attribute columns.
Implements
IDataRecord::GetValues(array<Object^>^)For most applications, the GetValues method provides an efficient means for retrieving all columns, instead of retrieving each column individually.
You can pass an Object array that contains fewer than the number of columns that are contained in the resulting row. Only the amount of data the Object array holds is copied to the array. You can also pass an Object array whose length is more than the number of columns that are contained in the resulting row.
This method returns DBNull for null database columns.
.NET Framework
Available since 1.1
Available since 1.1
OleDbDataReader Class
System.Data.OleDb Namespace
Working with DataReaders
Show: