Hello All,
i have a problem with output in sql server..
i have stored procedure like this:
CREATE PROCEDURE dbo.AddAdress
@street nvarchar (50),
@number int,
@uid uniqueidentifier,
@row nvarchar(50) OUTPUT
AS
INSERT INTO MyTestAddress VALUES (@uid, @street, @number )
SET @row='{B1F35189-CBA5-4C1D-B7D7-1FB381F9C06E}'
GO
in visual composer i get the inout, where i can see the "row" output, but when i make form of that i dont recieve that value in in the input field.
Anyone knows what is the problem?
Thanks for help!