SqlContext Class
Assembly: System.Data (in system.data.dll)
The SqlContext object can be used to obtain the trigger context (for code executing in a trigger) and the pipe object (when available, such as in stored procedures). It can also be used to obtain a WindowsIdentity object that represents the Microsoft Windows identity of the calling client, if the client authenticated with the server using integrated authentication.
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.
<Microsoft.SqlServer.Server.SqlProcedure()> _ Public Shared Sub StoredProcReturnResultSet() ' Create the record and specify the metadata for the columns. Dim record As New SqlDataRecord( _ New SqlMetaData("col1", SqlDbType.NVarChar, 100), _ New SqlMetaData("col2", SqlDbType.Int)) ' Mark the begining of the result-set. SqlContext.Pipe.SendResultsStart(record) ' Send 10 rows back to the client. Dim i As Integer For i = 0 To 9 ' Set values for each column in the row. record.SetString(0, "row " & i.ToString()) record.SetInt32(1, i) ' Send the row back to the client. SqlContext.Pipe.SendResultsRow(record) Next ' Mark the end of the result-set. SqlContext.Pipe.SendResultsEnd() End Sub
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.