SqlDataReader.GetSqlValues(Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fills an array of Object that contains the values for all the columns in the record, expressed as SQL Server types.
public:
virtual int GetSqlValues(cli::array <System::Object ^> ^ values);
public:
int GetSqlValues(cli::array <System::Object ^> ^ values);
public virtual int GetSqlValues (object[] values);
public int GetSqlValues (object[] values);
abstract member GetSqlValues : obj[] -> int
override this.GetSqlValues : obj[] -> int
member this.GetSqlValues : obj[] -> int
Public Overridable Function GetSqlValues (values As Object()) As Integer
Public Function GetSqlValues (values As Object()) As Integer
Parameters
- values
- Object[]
An array of Object into which to copy the values. The column values are expressed as SQL Server types.
Returns
An integer indicating the number of columns copied.
Exceptions
values
is null.
Remarks
Returns the values for all the columns in the record in a single call, using the SQL type system instead of the CLR type system. The length of the Object array does not need to match the number of columns in the record. You can pass an Object array that contains fewer than the number of columns contained in the record. Only the amount of data the Object array holds is copied to the array, starting at the column with ordinal 0. You can also pass an Object array whose length is more than the number of columns contained in the resulting row. Any remaining columns are untouched.