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.

link|improve this question

0% accept rate
feedback

1 Answer

whenever you use the SQL Server 2005 IDE or Visual Studio to create a Stored Procedure it adds a small line that ruins everything. That line is: SET NOCOUNT ON; This line turns on the NOCOUNT feature of SQL Server, which "Stops the message indicating the number of rows affected by a Transact-SQL statement from being returned as part of the results" and therefore it makes the SP always to return -1 when called from the application (in my case a web app).

In conclusion, remove that line from your SP and you will now get a value indicating the number of rows affected by the statement.

link|improve this answer
Thanks for this valueable information, I used to create stored procs, but never took notices to this line. – liaqat ali Oct 17 '11 at 13:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.