SqlPipe::SendResultsRow Method
Sends a single row of data back to the client.
Assembly: System.Data (in System.Data.dll)
Parameters
- record
- Type: Microsoft.SqlServer.Server::SqlDataRecord
A SqlDataRecord object with the column values for the row to be sent to the client. The schema for the record must match the schema described by the metadata of the SqlDataRecord passed to the SendResultsStart method.
| Exception | Condition |
|---|---|
| ArgumentNullException | The record is nullptr. |
| InvalidOperationException | The SendResultsStart method was not previously called. |
Managed stored procedures can send result sets to clients that are not implementing a SqlDataReader. This method, along with SendResultsStart and SendResultsEnd, allows stored procedures to send custom result sets to the client.
The SendResultsRow method sends a single row of data back to the client. Rows can subsequently be returned to the caller by calling SendResultsRow, one time for each row being sent. After all the rows have been sent, a call to the SendResultsEnd method is required to mark the end of the result set.
The following example creates a new SqlDataRecord and its SqlMetaData. The example then marks the beginning of a result set using the SendResultsStart method, sends records with example data back to the client using the SendResultsRow method, and marks the end of the result set with the SendResultsEnd method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.