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

  • SEARCH
  • Home
  • 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 7837987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:56:29+00:00 2026-06-02T14:56:29+00:00

This test code is really straightforward var addedRows1 = (securityDataTable.GetChanges(DataRowState.Added)); MessageBox.Show(addedRows1.Rows[1].RowState.ToString()); MessageBox.Show(addedRows1.Rows.Count.ToString()); addedRows1.Rows[1].AcceptChanges(); var

  • 0

This test code is really straightforward

var addedRows1 = (securityDataTable.GetChanges(DataRowState.Added));
MessageBox.Show(addedRows1.Rows[1].RowState.ToString());
MessageBox.Show(addedRows1.Rows.Count.ToString());

addedRows1.Rows[1].AcceptChanges();

var addedRows2 = (securityDataTable.GetChanges(DataRowState.Added));
MessageBox.Show(addedRows2.Rows[1].RowState.ToString());
MessageBox.Show(addedRows2.Rows.Count.ToString());

The 4 MessageBox show, in order, the following messages:

Added
3
Added
3

I would expect the count to return 2 on the last message. Why isn’t that the case and can this be fixed by any mean? Note: The DataTable is not linked to a table nor a particular data source.

EDIT: Note that the RowState is ok (set to Unchanged) if I don’t requery the GetChanges() the second time

  • 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-06-02T14:56:31+00:00Added an answer on June 2, 2026 at 2:56 pm

    GetChanges returns a copy of the rows. Are you using a data adapter to fill your data table? MSDN recommends calling AcceptChanges on the DataAdapter’

    private void UpdateDataTable(DataTable table, 
        OleDbDataAdapter myDataAdapter)
    {
        DataTable xDataTable = table.GetChanges();
    
        // Check the DataTable for errors.
        if (xDataTable.HasErrors)
        {
            // Insert code to resolve errors.
        }
    
        // After fixing errors, update the database with the DataAdapter 
        myDataAdapter.Update(xDataTable);
    }
    

    Edit
    Since you are just using a datatable, you could create a query for the rows that are added and call AcceptChanges on that row:

    DataRow[] addedRows = datatable.Select(null, null, DataViewRowState.Added);
     foreach (DataRow _ddr in addedRows)
     {
     _ddr.AcceptChanges();
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem, and I made this test code to show you my
This is my code to send mail (test code): //sending mail var message =
I have this test code that just saves an XML file to a folder.
I found this orientation test code below looking for JQTouch reference material. This works
I have this code in my controller and want to test this code line
Even using the default test code on my app I can't get this working.
I use this library: https://github.com/robbiehanson/CocoaAsyncSocket My test code: #import <UIKit/UIKit.h> @class GCDAsyncUdpSocket; @interface ThirdViewController
How do you unit test code decorated with the PrincipalPermission attribute? For example, this
C# 2008 I am using this code to test for an internet connection. As
I have just come across this code: function test(){ //... if ( $profilerule ==

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.