B
Brian Henry
in sql server when you do a command like this in a stored procedure
CREATE PROCEDURE [DBO].[APPSP_PrintMessage]
AS
print "Beginning transaction..."
GO
which will print the message to the messages output from SQL Server server
side (which can be seen in query analyzer) how would you retrieve these
status messages as they come back from the stored procedure in the
application? like have a list box showing the messages as the stored
procedure is processed. thanks
CREATE PROCEDURE [DBO].[APPSP_PrintMessage]
AS
print "Beginning transaction..."
GO
which will print the message to the messages output from SQL Server server
side (which can be seen in query analyzer) how would you retrieve these
status messages as they come back from the stored procedure in the
application? like have a list box showing the messages as the stored
procedure is processed. thanks