Hi,
I am fed up trying solution for this. Anyone's help is much appreciated.
I have a dataset and a datagridview. I added new rows in the datagrid . I have a save button which has the click event as below.
UsersDataSet is the Dataset & Users is the table.
int rowsaf = usersTableAdapter.Update(UsersDataSet); usersTableAdapter.Update(UsersDataSet.Users); MessageBox.Show(rowsaf.ToString() + "Rows Affected");
The code works perfectly fine and the dataset is updated. But when I close the application and open again, The datas that I save in the previous run is not available. Means to say, It is not written in the Database.
What I am missing, Please help.
Visual Studio Express Editions26
|