Hi all
I have aroblem: I want to save is ms access, datatable, but all lines
are
marked as new, and all the sta is re insert to the db!


when I debug I see the row state is added!(even if it is not true!!)
what can I do??
foreach (DataRow Row in ds.Tables["Tasks"].Rows)
                    {
                        switch (Row.RowState)
                        {
                            case DataRowState.Added :

perhaps the problem is in using the ds. I  got this ds(its not the
original ds, I first got from ds)
if that's the problem, what can I do to find the deifference between
current ds and th db?
tnx

Reply via email to