|
Howdy,
I'm developing a little database management system (Access) that will allow the user to browse through the records, edit any values, and add new records.
I have been able to bind the controls relatively easy, setting their datasourceupdatemode to OnValidation.
Should I be able to call dataadapter.fill(mydataset) on the dataset that i'm using to bind my text box controls, and will that not update any changes or new records to the database?
I'm doing something wrong because I use the bindingNavigator for adding records and navigation through them. When i click my update button that simply calls the data adapter to update the dataset, I get nothing. My database isn't updated, and when I fill my dataset again, there are no changes nor any new records added.
Any ideas what I'm doing wrong? If you need to see code, let me know. Just thought it was a simple step i'm missing.
I am wanting the user to be able to edit the values in the textbox and then that be updated into the database.
Thanks!
|