| 1. |
How Can We Save All Data From Dataset ? |
|
Answer» Answer :
// create the data adapter
SqlDataAdapter dataAdapter = NEW Then, when we've finished making our changes to the DataSet via the DataGrid, we call dataAdapter.Update(dataSet);and the database will now contain the changes we have made. Then, when we've finished making our changes to the DataSet via the DataGrid, we call and the database will now contain the changes we have made. |
|