Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 307897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:36:03+00:00 2026-05-12T07:36:03+00:00

public static int MassEmpNumUpdate(string empToUpdateFrom, string empToUpdateTo) { string sql; int retval; using (cn

  • 0
public static int MassEmpNumUpdate(string empToUpdateFrom, string empToUpdateTo)
{
    string sql;
    int retval;
    using (cn = new SqlConnection(ConnectionString()))
    {
        cn.Open();
        sql = "uspUpdateDet"; // THIS IS THE 1ST SP
        using (cmd = new SqlCommand(sql, cn))
        {
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.AddWithValue("@EmpToUpdateFrom", empToUpdateFrom);
            cmd.Parameters.AddWithValue("@EmpToUpdateTo", empToUpdateTo);
            cmd.Parameters.Add("@ReturnValue", SqlDbType.Int).Direction = ParameterDirection.ReturnValue;
            cmd.ExecuteNonQuery();

            retval = (int)cmd.Parameters["@ReturnValue"].Value;

        }

        if (retval == 0)
        {
            sql = "uspUpdatePrev"; // THIS IS THE 2ND SP - not working :(
            using (cmd = new SqlCommand(sql, cn))
            {
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Parameters.AddWithValue("@EmpToUpdateFrom", empToUpdateFrom);
                cmd.Parameters.AddWithValue("@EmpToUpdateTo", empToUpdateTo);
                cmd.Parameters.Add("@returnvalue", SqlDbType.Int).Direction =   ParameterDirection.ReturnValue;
                return cmd.ExecuteNonQuery();
            }
        }

        return retval;
    }

}

}

I have 2 stored procedure (that will update 2 tables) the uspUpdateDet and uspUpdatePrev.
My question is why is my second (uspUpdatePrev) statement is not working. btw the sp is working right from sql server 08.

SP1:

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

ALTER PROCEDURE [dbo].[uspUpdateDet]

 @EmpToUpdateFrom varchar(7)
, @EmpToUpdateTo varchar(7)

AS
SET NOCOUNT ON;

DECLARE @affectedRows int
SET @affectedRows = 0;

BEGIN
UPDATE tbl1
SET DET1 = @EmpToUpdateTo
WHERE DET1 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET DET2 = @EmpToUpdateTo
WHERE DET2 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L1 = @EmpToUpdateTo
WHERE L2 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L2 = @EmpToUpdateTo
WHERE L2 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L3 = @EmpToUpdateTo
WHERE L3 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L4 = @EmpToUpdateTo
WHERE L4 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L5 = @EmpToUpdateTo
WHERE L5 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L6 = @EmpToUpdateTo
WHERE L6 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L7 = @EmpToUpdateTo
WHERE L7 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

BEGIN
UPDATE tbl1
SET L8 = @EmpToUpdateTo
WHERE L8 = @EmpToUpdateFrom
SET @affectedRows = @affectedRows + @@ROWCOUNT
END

return @affectedRows

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:36:03+00:00Added an answer on May 12, 2026 at 7:36 am

    First guess is that your using statement in the first block is closing your connection. What error are you getting?

    Edit: After looking at this question it seems like this does not happen so the best guess would be that you’re not hitting the block at all. Are you sure that’s happening?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 187k
  • Answers 187k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Don't do this. The whole point of layout managers is… May 12, 2026 at 5:28 pm
  • Editorial Team
    Editorial Team added an answer After experimenting on the shell for a while I think… May 12, 2026 at 5:28 pm
  • Editorial Team
    Editorial Team added an answer There is no post_load because there is no load function.… May 12, 2026 at 5:28 pm

Related Questions

public static int AwaitingApprovals() { int numApprovals = 0; string sql = SELECT COUNT(Type)
I wrote this: public static class EnumerableExtensions { public static int IndexOf<T>(this IEnumerable<T> obj,
I have something like this: class Base { public: static int Lolz() { return
I have the following function: //Function to get random number public static int RandomNumber(int

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.