Hi,
how do i determine whether a INSERT/UPDATE/DELETE stored procedure is successed/failured.
if for example, I have the following stored proc here:
How do I know whether the insert is successful?
Please advise.
Thanks
how do i determine whether a INSERT/UPDATE/DELETE stored procedure is successed/failured.
if for example, I have the following stored proc here:
Code:
create procedure sp_add_employee @userid int, @password varchar(20) as insert into employee values(@userid,@password)
Please advise.
Thanks
Comment