D
Djimbo
Hi,
for example on the follow procedure:
create procedure myproced
@id int
as begin
select name,country from mytable where id=@id
end
i want to retrieve the output parameters from a stored procedure using
sqlserver,
the DeriveParameters only returns me the input param "@id", but i need
the output params "name" and "country"
any one can help me?
for example on the follow procedure:
create procedure myproced
@id int
as begin
select name,country from mytable where id=@id
end
i want to retrieve the output parameters from a stored procedure using
sqlserver,
the DeriveParameters only returns me the input param "@id", but i need
the output params "name" and "country"
any one can help me?