I am using stored procedure to insert some value in table.
CREATE PROCEDURE [dbo].[Sp_InsertValue]
@Val1 as nvarchar(50)
@Val2 as nvarchar(50)
as
BEGIN
IF NOT EXISTS(SELECT * FROM @mytable WHERE ID=@Val1)
INSERT INTO @mytable VALULES(@VAL2)
END
I am using ExecuteNonQuery() to call this stored procedure in asp.net using c#. It works fine, no issue, it inserts values if not existing. BUT the issue is that cmd.ExecuteNonQuery() always return -1. I expect if record is inserted, it should return 1 else 0, Am I right? Can any one help me in this regard, I will be thankful.