S
Smokey Grindel
Say I have a procedure that returns a return code like the following...
CREATE PROCEDURE TestProc
AS
BEGIN
SET NOCOUNT ON;
SELECT *
FROM MyTable;
RETURN 10
END
And I execute that in a sql command object, how does my client application
get the return code back? Which in this case is 10.. thanks!
CREATE PROCEDURE TestProc
AS
BEGIN
SET NOCOUNT ON;
SELECT *
FROM MyTable;
RETURN 10
END
And I execute that in a sql command object, how does my client application
get the return code back? Which in this case is 10.. thanks!