Table Update Via Table Adapter
C#
2
Posts
1
Posters
0
Views
1
Watching
-
The following code work, but for any reason, the data did not save on the table. I can look at the data on the grid, but it is not saved.
table1TableAdapter.Insert("name1", "name2", "name3"); table1TableAdapter.Update(db1DataSet1.Table1);
the data did not save on the table. I want to know why and how to fix it. -
The following code work, but for any reason, the data did not save on the table. I can look at the data on the grid, but it is not saved.
table1TableAdapter.Insert("name1", "name2", "name3"); table1TableAdapter.Update(db1DataSet1.Table1);
the data did not save on the table. I want to know why and how to fix it.