Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OracleDataReader::GetOracleValues Method (array<Object^>^)

 

Gets all the attribute columns in the current row in Oracle format.

Namespace:   System.Data.OracleClient
Assembly:  System.Data.OracleClient (in System.Data.OracleClient.dll)

public:
int GetOracleValues(
	array<Object^>^ values
)

Parameters

values
Type: array<System::Object^>^

An array of type Object into which to copy the attribute columns.

Return Value

Type: System::Int32

The number of instances of Object in the array.

For most applications, the GetOracleValues 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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft