Contents Index GetValue method IsClosed property

ASA Programming Guide
  Adaptive Server Anywhere .NET Data Provider API Reference
    AsaDataReader class

GetValues method


Description 

All the attribute columns in the current row.

Syntax 

int GetValues( object[ ] values )

Parameters 

values    An array of objects that holds an entire row of the result set.

Return value 

The number of objects in the array.

Implements 

IDataRecord GetValues

Usage 

For most applications, the GetValues method provides an efficient means for retrieving all columns, rather than retrieving each column individually.

You can pass an Object array that contains fewer than the number of columns 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 contained in the resulting row.

This method returns DBNull for null database columns.

Gets the value of the column at the specified ordinal in its native format.


Contents Index GetValue method IsClosed property