Click here to Skip to main content
15,884,877 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have 2 datasets , i copied from 1 dataset to other using importrow and save to database.
Now the dataset from which rows are copied has rowstate as added , can i change it to unchanged , as i need to check later whether changes are saved or not based on rowstate
Posted
Comments
Maciej Los 17-Mar-13 16:50pm    
What have you done till now?
What's the problem?
And the question is...
srastogi85 17-Mar-13 18:11pm    
Hi Maciej,
What i wass trying to do , have elaborated in below comment by me .

1 solution

Hey calling the AcceptChanges method on the data set will set the rowstate to unchanged.
Please see http://msdn.microsoft.com/en-us/library/system.data.dataset.acceptchanges.aspx[^]
 
Share this answer
 
Comments
srastogi85 17-Mar-13 18:10pm    
Hi Mike,
I did Accept Changes for the 1st dataset, it changes rowstate to Unchanged thats perfectly ok,
but since due to primary key connstraint i added rows from other dataset also to the dataset i saved, so for this dataset , if i will do Acceptchanges now it will give primary key constraint since rows are already there , so wanted a way to change the rowstate of this dataset to Unchanged , Please suggest
frostcox 17-Mar-13 18:18pm    
Either way here you won't be able to insert duplicate records in you database with the same ids, can you elaborate a bit more as to what your trying to achieve and post some code so I can take a look for you?

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