Partager via


CurrentResultSet Property

Cette fonctionnalité sera supprimée dans une prochaine version de Microsoft SQL Server. Évitez d'utiliser cette fonctionnalité dans de nouveaux travaux de développement et prévoyez de modifier les applications qui utilisent actuellement cette fonctionnalité.

The CurrentResultSet property controls access to the result sets of a QueryResults object.

Syntaxe

object.CurrentResultSet [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list

  • value
    A long integer

Data Type

Long

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetCurrentResultSet(LPLONG pRetVal);
HRESULT SetCurrentResultSet(LONG NewValue);

Notes

A QueryResults object can contain multiple result sets of data. For example, each result of an individual command in a Transact-SQL batch is returned to the client in its own set. Use the CurrentResultSet property to select a particular result set .

The ResultSets property reports the number of result sets in the QueryResults object.

Applies To: