Hi all ,
Im using sql server 2005 and vs 2008.
Correct if my syntax are wrong,
I have created a sp with two i/p values and two o/p values like,
create procedure dbo.employee
(@emp_id int,
@emp_name varchar(50),
@group_name OUTPUT,
@department_id OUTPUT
)
Here my SP name (employee) and Parameters (emp_id input
emp_name input
group_name OUTPUT,department_id OUTPUT,
)
two input and two ouptut param ,IS IT POSSIBLE ???
IF NOT ,explain me to call this SP from VB.net with single output
can any1 help on this issue ?
Thanks in advance
S.Naveen...