help needed for BindingNavigator...

delete469

New member
Joined
Jun 19, 2007
Messages
2
Programming Experience
1-3
hi guys,
need a little help on the BindingNavigator save changes. i dont seem to be able to update the database. i best guess is that the data only changes at dataset but not in the database as its working offline. please kindly advice. what i did was follow the step in this URL http://www.code-magazine.com/Article...uickid=0601061
thanks,
john
 
The Link you sent does not work. But a dataset is an offline copy of the database. You cannot update something simply through the dataset you need a data adapter. This will fill the dataset with records and you can read them that way. Also you will have to use the adapater anytime that you want to actually modify data.
 
Back
Top