Skip to Content
0
Former Member
Nov 17, 2005 at 09:31 AM

output in SQL server problem

28 Views

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!