hi,
is there anyway to know whether a INSERT/UPDATE/DELETE stored procedured was executed successfully?
for example, if i have the following StoredProcedure :
can i get a return value from the stored procedure to know whether the insert is success/failure?
Thank you.
is there anyway to know whether a INSERT/UPDATE/DELETE stored procedured was executed successfully?
for example, if i have the following StoredProcedure :
Code:
create procedure sp_add_employee @userid int, @password varchar(20) as insert into employee values(@userid,@password)
Thank you.
Comment