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 62951
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:33:23+00:00 2026-05-10T18:33:23+00:00

Replaces Question: Update multiple rows into SQL table Here’s a Code Snippet to update

  • 0

Replaces Question: Update multiple rows into SQL table

Here’s a Code Snippet to update an exam results set. DB structure is as given, but I can submit Stored Procedures for inclusion (Which are a pain to modify, so I save that until the end.)

The question: Is there a better way using SQL server v 2005.,net 2.0 ?

string update = @'UPDATE dbo.STUDENTAnswers                                SET ANSWER=@answer                               WHERE StudentID =@ID and QuestionNum =@qnum';             SqlCommand updateCommand = new SqlCommand( update, conn );             conn.Open();              string uid = Session['uid'].ToString();             for (int i= tempStart; i <= tempEnd; i++)             {                 updateCommand.Parameters.Clear();                 updateCommand.Parameters.AddWithValue('@ID',uid);                 updateCommand.Parameters.AddWithValue('@qnum',i);                 updateCommand.Parameters.AddWithValue('@answer', Request.Form[i.ToString()]);                 try                 {                     updateCommand.ExecuteNonQuery();                 }                 catch { }             } 
  • 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. 2026-05-10T18:33:23+00:00Added an answer on May 10, 2026 at 6:33 pm

    A few things stand out:

    • You don’t show where the SqlConnection is instantiated, so it’s not clear that you’re disposing it properly.

    • You shouldn’t be swallowing exceptions in the loop – better to handle them in a top level exception handler.

    • You’re instantiating new parameters on each iteration through the loop – you could just reuse the parameters.

    Putting this together it could look something like the following (if you don’t want to use a transaction, i.e. don’t care if some but not all updates succeed):

    using (SqlConnection conn = new SqlConnection(connectionString)) {     conn.Open();     using (SqlCommand updateCommand = new SqlCommand(update, conn))     {         string uid = Session['uid'].ToString();         updateCommand.Parameters.AddWithValue('@ID', uid);         updateCommand.Parameters.AddWithValue('@qnum', i);         updateCommand.Parameters.Add('@answer', System.Data.SqlDbType.VarChar);         for (int i = tempStart; i <= tempEnd; i++)         {             updateCommand.Parameters['@answer'] = Request.Form[i.ToString()];             updateCommand.ExecuteNonQuery();         }     } } 

    Or to use a transaction to ensure all or nothing:

    using (SqlConnection conn = new SqlConnection(connectionString)) {     conn.Open();     using (SqlTransaction transaction = conn.BeginTransaction())     {         using (SqlCommand updateCommand = new SqlCommand(update, conn, transaction))         {             string uid = Session['uid'].ToString();             updateCommand.Parameters.AddWithValue('@ID', uid);             updateCommand.Parameters.AddWithValue('@qnum', i);             updateCommand.Parameters.Add('@answer', System.Data.SqlDbType.VarChar);             for (int i = tempStart; i <= tempEnd; i++)             {                 updateCommand.Parameters['@answer'] = Request.Form[i.ToString()];                 updateCommand.ExecuteNonQuery();             }             transaction.Commit();         }     } // Transaction will be disposed and rolled back here if an exception is thrown } 

    Finally, another problem is that you are mixing UI code (e.g. Request.Form) with data access code. It would be more modular and testable to separate these – e.g. by splitting your application into UI, Business Logic and Data Access layers.

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

Sidebar

Ask A Question

Stats

  • Questions 231k
  • Answers 231k
  • 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 Use the following function like this: Image('/path/to/original.image', '1/1', '150*', './thumb.jpg');… May 13, 2026 at 2:13 am
  • Editorial Team
    Editorial Team added an answer Check you database schema to see if the field (referenced… May 13, 2026 at 2:13 am
  • Editorial Team
    Editorial Team added an answer I figured out the problem - there was a session… May 13, 2026 at 2:13 am

Related Questions

Replaces Question: Update multiple rows into SQL table Here's a Code Snippet to update
I have a simple query: select * from countries with the following results: country_name
I recently started working on a large complex application, and I've just been assigned
How do I update different columns and rows across a table? I want to
We're building a text templating engine out of a custom HttpModule that replaces tags

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.