SqlPipe
Sep 20, 2005Can any one tell me what is the SqlPipe in SQL 2005 ?In what it is different between it and the DataReader?thanks
View 1 RepliesCan any one tell me what is the SqlPipe in SQL 2005 ?In what it is different between it and the DataReader?thanks
View 1 RepliesHi guys,
How can i read in my C# client application values returned from sqlpipe
send(string)/send(reader method from CLR stored procedure.....following
is example of a stored procedure.I want to read datetime string in my
C# client
Thanks
[Microsoft.SqlServer.Server.SqlProcedure]
public static void PrintToday()
{
// Put your code here
SqlPipe p;
p = SqlContext.Pipe;
p.Send(System.DateTime.Today.ToString());
}