for(int i = 0; i < m_DataTable.Rows.Count; i++)
{
m_DataTable.Rows[i]["WORKER"] = "test";
m_DataTable.Rows[i].AcceptChanges();
}
m_DataTable.AcceptChanges();
Is there any reason that I can not see that this code does not update my dataTable?