Click here to Skip to main content
15,896,410 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am Write Unit Test Cases for Stopred Procedure in vs 2012.In Test case execute stored procedure and get the row count.also the Get the row count in other table.I am try to compare both rowcounts.i am write script that script work on sql server but 2012 row count compare the table value.Plese help me to solve this problem.

This is code
C#
/*TagHistory Export Test. Testing with default paramaeters*/


SET NOCOUNT ON;
DECLARE @TagHistoryRowCount int=0;
DECLARE @ExportProcRowCount int=0;

--Executing aaInternalTagHistoryExport procedure
EXEC aaInternalTagHistoryExport;

SELECT @ExportProcRowCount=@@ROWCOUNT;

SELECT @TagHistoryRowCount=COUNT(*) 
FROM dbo.TagHistory

IF(@ExportProcRowCount = @TagHistoryRowCount)
 SELECT 1;
ELSE
 SELECT 0;



Error : ScalarValueCondition Failed: ResultSet 1 Row 1 Column 1:Values do not match,actual'R5Obj219' expected '1'.
Posted
Comments
CHill60 30-May-13 4:01am    
Just to clarify ... are you saying that if you run this test in SQL Server directly, then this code snippet returns 1 - Successful, but if you run it from C# it returns 0?
s v b raju 30-May-13 5:08am    
Run this test in sql return 1. but run in vs 2012 Given Error like values do not match.
Surendra Adhikari SA 13-Jun-13 2:30am    
how did you excute this in c# ? can you give your code.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900