.NET의 T-SQL 저장 프로 시저에서 인쇄 출력을 캡처 할 수 있습니까?
인쇄를 errorMessaging의 수단으로 사용하는 레거시 프로세스가 많이 있습니다. 예를 들어, 다음 PROC에서 출력 '단어'에 액세스 할 수 있습니까?
-- The PROC
CREATE PROC usp_PrintWord AS
PRINT 'word'
// Some C# Code to would like to pull out 'word'
SqlCommand cmd = new SqlCommand("usp_printWord", TheConnection);
cmd.CommandType = CommandType.StoredProcedure;
// string ProcPrint = ???