Hmmm, I would like my dataGrid to be able to update my dataSource. I'm using a DataSet though for the source. Is this totally the wrong idea? I'm thinking it might be.
Anyways, the dataAdapter I have is genereated through code. I made my update command as such for the adapter:
"Update Table Set Table.Field = @Field"
I then used the DataAdapter.Update(DataSource) method, to try and update the dataSource.
What is the best approach to this?
Anyways, the dataAdapter I have is genereated through code. I made my update command as such for the adapter:
"Update Table Set Table.Field = @Field"
I then used the DataAdapter.Update(DataSource) method, to try and update the dataSource.
What is the best approach to this?