Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. Update in C# using SQL Server Database.

Update in C# using SQL Server Database.

Scheduled Pinned Locked Moved C#
csharpdatabasehelpsharepointsql-server
50 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Pete OHanlon

    Post your updated code.

    N Offline
    N Offline
    Norris Chappell
    wrote on last edited by
    #27

    protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
    {
    int @ID = Convert.ToInt32(gvKeyPersonnel.DataKeys[0].Value.ToString());
    TextBox @Name = (TextBox)gvKeyPersonnel.Rows[0].FindControl("txtName");
    TextBox @VDCIDIQ = (TextBox)gvKeyPersonnel.Rows[1].FindControl("txtVDCIDIQ");
    TextBox @VDCFFS = (TextBox)gvKeyPersonnel.Rows[2].FindControl("txtVDCFFS");
    TextBox @VDCHIM = (TextBox)gvKeyPersonnel.Rows[3].FindControl("txtVDCHIM");
    TextBox @VDCWEBHOSTING = (TextBox)gvKeyPersonnel.Rows[4].FindControl("txtVDCWEBHOSTING");
    TextBox @VDCCWF = (TextBox)gvKeyPersonnel.Rows[5].FindControl("txtVDCCWF");

            using (SqlCommand cmd = new SqlCommand())
            {
               cmd.Connection = conn;
                conn.Open();
                // SqlDataReader myReader = null;
                // myReader = cmd.ExecuteReader();
                
                    
                
                foreach (GridViewRow row in gvKeyPersonnel.Rows)
              //    for (int i = 0; i < gvKeyPersonnel.Rows.Count; i++)
                      
                  {
                      
                     
                   
                   cmd.CommandText = @"UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                   //cmd.Parameters.AddWithValue("@id", row.Cells\[0\].Text);
                   //cmd.Parameters.AddWithValue("@Name", row.Cells\[0\].Text);
                   //cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[1\].Text);
                   //cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[2\].Text);
                   //cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[3\].Text);
                   //cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[4\].Text);
                   //cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[5\].Text);
                   cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                   cmd.Parameters.AddWithValue("@Name", Name.Text);
                   cmd.Parameters.AddWithValue("@VDCIDIQ", VDCIDIQ.Text);
                   cmd.Parameters.AddWithValue("@VDCFFS", VDCFFS.Text);
                   cmd.Parameters.AddWithValue("@VDCHIM", VDCHIM.Text);
                   cmd.Parameters.AddWit
    
    P 1 Reply Last reply
    0
    • N Norris Chappell

      protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
      {
      int @ID = Convert.ToInt32(gvKeyPersonnel.DataKeys[0].Value.ToString());
      TextBox @Name = (TextBox)gvKeyPersonnel.Rows[0].FindControl("txtName");
      TextBox @VDCIDIQ = (TextBox)gvKeyPersonnel.Rows[1].FindControl("txtVDCIDIQ");
      TextBox @VDCFFS = (TextBox)gvKeyPersonnel.Rows[2].FindControl("txtVDCFFS");
      TextBox @VDCHIM = (TextBox)gvKeyPersonnel.Rows[3].FindControl("txtVDCHIM");
      TextBox @VDCWEBHOSTING = (TextBox)gvKeyPersonnel.Rows[4].FindControl("txtVDCWEBHOSTING");
      TextBox @VDCCWF = (TextBox)gvKeyPersonnel.Rows[5].FindControl("txtVDCCWF");

              using (SqlCommand cmd = new SqlCommand())
              {
                 cmd.Connection = conn;
                  conn.Open();
                  // SqlDataReader myReader = null;
                  // myReader = cmd.ExecuteReader();
                  
                      
                  
                  foreach (GridViewRow row in gvKeyPersonnel.Rows)
                //    for (int i = 0; i < gvKeyPersonnel.Rows.Count; i++)
                        
                    {
                        
                       
                     
                     cmd.CommandText = @"UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                     //cmd.Parameters.AddWithValue("@id", row.Cells\[0\].Text);
                     //cmd.Parameters.AddWithValue("@Name", row.Cells\[0\].Text);
                     //cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[1\].Text);
                     //cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[2\].Text);
                     //cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[3\].Text);
                     //cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[4\].Text);
                     //cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[5\].Text);
                     cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                     cmd.Parameters.AddWithValue("@Name", Name.Text);
                     cmd.Parameters.AddWithValue("@VDCIDIQ", VDCIDIQ.Text);
                     cmd.Parameters.AddWithValue("@VDCFFS", VDCFFS.Text);
                     cmd.Parameters.AddWithValue("@VDCHIM", VDCHIM.Text);
                     cmd.Parameters.AddWit
      
      P Offline
      P Offline
      Pete OHanlon
      wrote on last edited by
      #28

      Whoah. Okay, that's really not going to work. You load the TextBoxes with one set of values and then you assign them on each iteration through the foreach. That's just going to set the values to the same values and I doubt that's what you want. You need to stop and have a think about what you're trying to achieve rather than just throwing things together in the hope that they will work. Write out the steps on a bit of paper and then code that up. Drop the TextBox approach here - it's just not going to work.

      N 1 Reply Last reply
      0
      • P Pete OHanlon

        Whoah. Okay, that's really not going to work. You load the TextBoxes with one set of values and then you assign them on each iteration through the foreach. That's just going to set the values to the same values and I doubt that's what you want. You need to stop and have a think about what you're trying to achieve rather than just throwing things together in the hope that they will work. Write out the steps on a bit of paper and then code that up. Drop the TextBox approach here - it's just not going to work.

        N Offline
        N Offline
        Norris Chappell
        wrote on last edited by
        #29

        Okay thanks. I am a newbie to C#. Don't I need to use Label instead of TextBox in ASP.Net GridView control?

        P 1 Reply Last reply
        0
        • N Norris Chappell

          Okay thanks. I am a newbie to C#. Don't I need to use Label instead of TextBox in ASP.Net GridView control?

          P Offline
          P Offline
          Pete OHanlon
          wrote on last edited by
          #30

          It seems you have two separate issues that you're trying to fix here. The first is how to save the data from your GridView and the second one is how to display it/edit it. Is that correct? Let's solve the first one - by assuming that you have somehow managed to display and edit the data back into the GridView. If we assume that, then you use the approach I outlined to perform your save. Don't try to save directly off the TextBoxes as that only applies to saving a single row. So, follow the code I outlined using the value in cell 0 to get your Id and save off that.

          N 1 Reply Last reply
          0
          • P Pete OHanlon

            It seems you have two separate issues that you're trying to fix here. The first is how to save the data from your GridView and the second one is how to display it/edit it. Is that correct? Let's solve the first one - by assuming that you have somehow managed to display and edit the data back into the GridView. If we assume that, then you use the approach I outlined to perform your save. Don't try to save directly off the TextBoxes as that only applies to saving a single row. So, follow the code I outlined using the value in cell 0 to get your Id and save off that.

            N Offline
            N Offline
            Norris Chappell
            wrote on last edited by
            #31

            Yes I can display my Gridview and edit it. When I click update that is where the issue is? You told me to cmd.Parameters.Clear(); Should that be in the foreach loop?

            protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
            {

                    using (SqlCommand cmd = new SqlCommand())
                    {
                       cmd.Connection = conn;
                        conn.Open();
                                           
                        
                        foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                           
                          {
            
                           cmd.Parameters.Clear(); 
                           
                           cmd.CommandText = @"UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                           cmd.ExecuteNonQuery();   
                           cmd.Parameters.AddWithValue("@id", row.Cells\[0\].Text);
                           cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                           cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                           cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                           cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                           cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                           cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                              
                            
                           
                        }
                        conn.Close();
                    }
                }
            

            I must be missing something here? Thanks for your help and looking at it?

            P A 2 Replies Last reply
            0
            • N Norris Chappell

              Yes I can display my Gridview and edit it. When I click update that is where the issue is? You told me to cmd.Parameters.Clear(); Should that be in the foreach loop?

              protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
              {

                      using (SqlCommand cmd = new SqlCommand())
                      {
                         cmd.Connection = conn;
                          conn.Open();
                                             
                          
                          foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                             
                            {
              
                             cmd.Parameters.Clear(); 
                             
                             cmd.CommandText = @"UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                             cmd.ExecuteNonQuery();   
                             cmd.Parameters.AddWithValue("@id", row.Cells\[0\].Text);
                             cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                             cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                             cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                             cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                             cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                             cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                                
                              
                             
                          }
                          conn.Close();
                      }
                  }
              

              I must be missing something here? Thanks for your help and looking at it?

              P Offline
              P Offline
              Pete OHanlon
              wrote on last edited by
              #32

              Yes it should. You need that to ensure you don't try and add the same parameters in again.

              N 1 Reply Last reply
              0
              • P Pete OHanlon

                Yes it should. You need that to ensure you don't try and add the same parameters in again.

                N Offline
                N Offline
                Norris Chappell
                wrote on last edited by
                #33

                While in debug, I don't see any values in the fields? When I update all fields except the ID is deleted in the database. Don't I have to set the parameters first before using cmd.Parameters.AddWithValue?

                1 Reply Last reply
                0
                • N Norris Chappell

                  Yes I can display my Gridview and edit it. When I click update that is where the issue is? You told me to cmd.Parameters.Clear(); Should that be in the foreach loop?

                  protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
                  {

                          using (SqlCommand cmd = new SqlCommand())
                          {
                             cmd.Connection = conn;
                              conn.Open();
                                                 
                              
                              foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                                 
                                {
                  
                                 cmd.Parameters.Clear(); 
                                 
                                 cmd.CommandText = @"UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                                 cmd.ExecuteNonQuery();   
                                 cmd.Parameters.AddWithValue("@id", row.Cells\[0\].Text);
                                 cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                                 cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                                 cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                                 cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                                 cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                                 cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                                    
                                  
                                 
                              }
                              conn.Close();
                          }
                      }
                  

                  I must be missing something here? Thanks for your help and looking at it?

                  A Offline
                  A Offline
                  Agent__007
                  wrote on last edited by
                  #34

                  Ta da! You are executing the command "before" adding the parameters. Move

                  cmd.ExecuteNonQuery();

                  line after you have added the parameters. Also a tip: - Remove the foreach loop and add the below line instead:

                  GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex];

                  Hope this helps.

                  You have just been Sharapova'd.

                  N 1 Reply Last reply
                  0
                  • A Agent__007

                    Ta da! You are executing the command "before" adding the parameters. Move

                    cmd.ExecuteNonQuery();

                    line after you have added the parameters. Also a tip: - Remove the foreach loop and add the below line instead:

                    GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex];

                    Hope this helps.

                    You have just been Sharapova'd.

                    N Offline
                    N Offline
                    Norris Chappell
                    wrote on last edited by
                    #35

                    I have the cmd.ExecuteNonQuery(); at the end But by removing the foreach loop and adding GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex]; is giving me an error on RowIndexand if I put row instead of e it gives me a error on row. I still don't see any values in the debug. I have spend 5 days on this one and still don't see what is wrong.

                    protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
                    {
                    using (SqlCommand cmd = new SqlCommand())
                    {
                    cmd.Connection = conn;
                    conn.Open();

                                               //  foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                                GridViewRow row = gvKeyPersonnel.Rows\[e.RowIndex\];
                                                {
                    
                                                    cmd.CommandText = "UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                    
                                                    cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                    // cmd.Parameters.AddWithValue("@id", row.Cells\[1\].Text);
                                                    cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                    
                                                    cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                                                    cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                                                    cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                                                    cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                                                    cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                                    //cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                    //cmd.Parameters.AddWithValue("@Name", Name.Text);
                                                    //cmd.Parameters.AddWithValue("@VDCIDIQ", VDCIDIQ.Text);
                                                    //cmd.Parameters.AddWithValue("@VDCFFS", VDCFFS.Text);
                                                    //cmd.Parameters.AddWithValue("@VDCHIM", VDCHIM.Text);
                                                    //cmd.Parameters.AddWithValue("@VDCWEBHOSTING", VDCWEBHOSTING.Text);
                    
                    A 1 Reply Last reply
                    0
                    • N Norris Chappell

                      I have the cmd.ExecuteNonQuery(); at the end But by removing the foreach loop and adding GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex]; is giving me an error on RowIndexand if I put row instead of e it gives me a error on row. I still don't see any values in the debug. I have spend 5 days on this one and still don't see what is wrong.

                      protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)
                      {
                      using (SqlCommand cmd = new SqlCommand())
                      {
                      cmd.Connection = conn;
                      conn.Open();

                                                 //  foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                                  GridViewRow row = gvKeyPersonnel.Rows\[e.RowIndex\];
                                                  {
                      
                                                      cmd.CommandText = "UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                      
                                                      cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                      // cmd.Parameters.AddWithValue("@id", row.Cells\[1\].Text);
                                                      cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                      
                                                      cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                                      //cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                      //cmd.Parameters.AddWithValue("@Name", Name.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCIDIQ", VDCIDIQ.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCFFS", VDCFFS.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCHIM", VDCHIM.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCWEBHOSTING", VDCWEBHOSTING.Text);
                      
                      A Offline
                      A Offline
                      Agent__007
                      wrote on last edited by
                      #36

                      Sorry, I should have mentioned this before. If the gvKeyPersonnel_RowUpdating() method/handler is for OnRowUpdating event of the gridview (which looks like is), i.e. if you have the following property for your grid (in .aspx) :

                      OnRowUpdating="gvKeyPersonnel_RowUpdating"

                      , then change the method's signature from

                      protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)

                      to

                      protected void gvKeyPersonnel_RowUpdating(object sender, GridViewUpdateEventArgs e)

                      That should do.

                      You have just been Sharapova'd.

                      N 1 Reply Last reply
                      0
                      • A Agent__007

                        Sorry, I should have mentioned this before. If the gvKeyPersonnel_RowUpdating() method/handler is for OnRowUpdating event of the gridview (which looks like is), i.e. if you have the following property for your grid (in .aspx) :

                        OnRowUpdating="gvKeyPersonnel_RowUpdating"

                        , then change the method's signature from

                        protected void gvKeyPersonnel_RowUpdating(object sender, EventArgs e)

                        to

                        protected void gvKeyPersonnel_RowUpdating(object sender, GridViewUpdateEventArgs e)

                        That should do.

                        You have just been Sharapova'd.

                        N Offline
                        N Offline
                        Norris Chappell
                        wrote on last edited by
                        #37

                        Yes I have OnRowUpdating="gvKeyPersonnel_RowUpdating property for my grid in aspx. Should I still removed foreach (GridViewRow row in gvKeyPersonnel.Rows). By the way how will it transverse through the datagridview with it?

                        A 1 Reply Last reply
                        0
                        • N Norris Chappell

                          Yes I have OnRowUpdating="gvKeyPersonnel_RowUpdating property for my grid in aspx. Should I still removed foreach (GridViewRow row in gvKeyPersonnel.Rows). By the way how will it transverse through the datagridview with it?

                          A Offline
                          A Offline
                          Agent__007
                          wrote on last edited by
                          #38

                          Norris Chappell wrote:

                          Should I still removed foreach (GridViewRow row in gvKeyPersonnel.Rows).

                          Yes, you should. When you update any of the rows, it will fire up OnRowUpdating event of the grid and gvKeyPersonnel_RowUpdating() event handler will be called. Note that, since the event is firing up "only" for the row you are updating, you should only do the things related to that row (note that I said you "should" :)). Now for your question:

                          Norris Chappell wrote:

                          By the way how will it transverse through the datagridview with it?

                          The answer is simple - you don't want to traverse through every row in the grid since you are updating only one (for which the event is fired) at any given time. Related: If you don't have it already, you may want to have a look at OnRowUpdated[^] event as well.

                          You have just been Sharapova'd.

                          N 1 Reply Last reply
                          0
                          • A Agent__007

                            Norris Chappell wrote:

                            Should I still removed foreach (GridViewRow row in gvKeyPersonnel.Rows).

                            Yes, you should. When you update any of the rows, it will fire up OnRowUpdating event of the grid and gvKeyPersonnel_RowUpdating() event handler will be called. Note that, since the event is firing up "only" for the row you are updating, you should only do the things related to that row (note that I said you "should" :)). Now for your question:

                            Norris Chappell wrote:

                            By the way how will it transverse through the datagridview with it?

                            The answer is simple - you don't want to traverse through every row in the grid since you are updating only one (for which the event is fired) at any given time. Related: If you don't have it already, you may want to have a look at OnRowUpdated[^] event as well.

                            You have just been Sharapova'd.

                            N Offline
                            N Offline
                            Norris Chappell
                            wrote on last edited by
                            #39

                            Thanks for pointing that out to me. One last thing do my parameters look right. Should I I removed this too? cmd.Parameters.Clear();

                            N A 2 Replies Last reply
                            0
                            • N Norris Chappell

                              Thanks for pointing that out to me. One last thing do my parameters look right. Should I I removed this too? cmd.Parameters.Clear();

                              N Offline
                              N Offline
                              Norris Chappell
                              wrote on last edited by
                              #40

                              I'm getting the following error: No overload for 'gvKeyPersonnel_RowUpdating' matches delegate 'System.EventHandler'

                              1 Reply Last reply
                              0
                              • N Norris Chappell

                                Thanks for pointing that out to me. One last thing do my parameters look right. Should I I removed this too? cmd.Parameters.Clear();

                                A Offline
                                A Offline
                                Agent__007
                                wrote on last edited by
                                #41

                                Norris Chappell wrote:

                                Should I I removed this too? cmd.Parameters.Clear();

                                Since you are not inside a loop anymore, you may want to remove that line. But that won't matter much as the SqlCommand is going to be disposed anyway (at the end of the using block). Also, since you are not using the foreach anymore, you may want to remove its "{ }" braces as well, as they are forming an unnecessary code-block at the moment.

                                You have just been Sharapova'd.

                                N 1 Reply Last reply
                                0
                                • A Agent__007

                                  Norris Chappell wrote:

                                  Should I I removed this too? cmd.Parameters.Clear();

                                  Since you are not inside a loop anymore, you may want to remove that line. But that won't matter much as the SqlCommand is going to be disposed anyway (at the end of the using block). Also, since you are not using the foreach anymore, you may want to remove its "{ }" braces as well, as they are forming an unnecessary code-block at the moment.

                                  You have just been Sharapova'd.

                                  N Offline
                                  N Offline
                                  Norris Chappell
                                  wrote on last edited by
                                  #42

                                  GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex]; is giving me this error: it doesn't like the e.RowIndex 'System.Web.UI.WebControls.GridViewUpdatedEventArgs' does not contain a definition for 'RowIndex' and no extension method 'RowIndex' accepting a first argument of type 'System.Web.UI.WebControls.GridViewUpdatedEventArgs' could be found (are you missing a using directive or an assembly reference?)

                                  A 1 Reply Last reply
                                  0
                                  • N Norris Chappell

                                    GridViewRow row = gvKeyPersonnel.Rows[e.RowIndex]; is giving me this error: it doesn't like the e.RowIndex 'System.Web.UI.WebControls.GridViewUpdatedEventArgs' does not contain a definition for 'RowIndex' and no extension method 'RowIndex' accepting a first argument of type 'System.Web.UI.WebControls.GridViewUpdatedEventArgs' could be found (are you missing a using directive or an assembly reference?)

                                    A Offline
                                    A Offline
                                    Agent__007
                                    wrote on last edited by
                                    #43

                                    If you are using GridViewUpdatedEventArgs e as a parameter to the gvKeyPersonnel_RowUpdating method/handler, then it's wrong. The method signature should look like this:

                                    protected void gvKeyPersonnel_RowUpdating(object sender, GridViewUpdateEventArgs e)

                                    that is, you initially had it correct. Note that it's GridViewUpdateEventArgs in the parameter. Don't get confused. The OnRowUpdating event that you already have should used to perform actual update (this you already have in place), where as the OnRowUpdated event I just suggested should be used to perform something "after" you have updated a row, like notify the user, rebind the grid, etc.

                                    You have just been Sharapova'd.

                                    N 1 Reply Last reply
                                    0
                                    • A Agent__007

                                      If you are using GridViewUpdatedEventArgs e as a parameter to the gvKeyPersonnel_RowUpdating method/handler, then it's wrong. The method signature should look like this:

                                      protected void gvKeyPersonnel_RowUpdating(object sender, GridViewUpdateEventArgs e)

                                      that is, you initially had it correct. Note that it's GridViewUpdateEventArgs in the parameter. Don't get confused. The OnRowUpdating event that you already have should used to perform actual update (this you already have in place), where as the OnRowUpdated event I just suggested should be used to perform something "after" you have updated a row, like notify the user, rebind the grid, etc.

                                      You have just been Sharapova'd.

                                      N Offline
                                      N Offline
                                      Norris Chappell
                                      wrote on last edited by
                                      #44

                                      Made that change but when I ran my code I got this error again: No overload for 'gvKeyPersonnel_RowUpdating' matches delegate 'System.EventHandler'

                                      A 1 Reply Last reply
                                      0
                                      • N Norris Chappell

                                        Made that change but when I ran my code I got this error again: No overload for 'gvKeyPersonnel_RowUpdating' matches delegate 'System.EventHandler'

                                        A Offline
                                        A Offline
                                        Agent__007
                                        wrote on last edited by
                                        #45

                                        Hmm, not sure. Can you show your grid's markup and "gvKeyPersonnel_RowUpdating" method again?

                                        You have just been Sharapova'd.

                                        N 2 Replies Last reply
                                        0
                                        • A Agent__007

                                          Hmm, not sure. Can you show your grid's markup and "gvKeyPersonnel_RowUpdating" method again?

                                          You have just been Sharapova'd.

                                          N Offline
                                          N Offline
                                          Norris Chappell
                                          wrote on last edited by
                                          #46

                                          protected void gvKeyPersonnel_RowUpdating(object sender, GridViewUpdateEventArgs e)
                                          {
                                          using (SqlCommand cmd = new SqlCommand())
                                          {

                                                      cmd.Connection = conn;
                                                      conn.Open();
                                                    
                                          
                                                      GridViewRow row =  gvKeyPersonnel.Rows\[e.RowIndex\];
                                                      // foreach (GridViewRow row in gvKeyPersonnel.Rows)
                                          
                                          
                                                      cmd.CommandText = "UPDATE SP2010\_EDCStaffing\_AppDB.dbo.CMS\_Key\_Personnel  SET  Name = @Name, VDCIDIQ = @VDCIDIQ, VDCFFS = @VDCFFS, VDCHIM = @VDCHIM, VDCWEBHOSTING = @VDCWEBHOSTING, VDCCWF = @VDCCWF WHERE ID = @id";
                                          
                                                      cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                      cmd.Parameters.AddWithValue("@Name", row.Cells\[1\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCIDIQ", row.Cells\[2\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCFFS", row.Cells\[3\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCHIM", row.Cells\[4\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCWEBHOSTING", row.Cells\[5\].Text);
                                                      cmd.Parameters.AddWithValue("@VDCCWF", row.Cells\[6\].Text);
                                                      //cmd.Parameters.AddWithValue("@id", Convert.ToInt32(gvKeyPersonnel.DataKeys\[row.RowIndex\].Values\[0\]));
                                                      //cmd.Parameters.AddWithValue("@Name", Name.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCIDIQ", VDCIDIQ.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCFFS", VDCFFS.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCHIM", VDCHIM.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCWEBHOSTING", VDCWEBHOSTING.Text);
                                                      //cmd.Parameters.AddWithValue("@VDCCWF", VDCCWF.Text);
                                          
                                                      cmd.ExecuteNonQuery();
                                                      //   cmd.Parameters.Clear();
                                                  }
                                          
                                                  conn.Close();
                                              }
                                          
                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups