vb.net - TableAdapter not updating to Access DataBase -


private sub btnupdate_click(sender object, e eventargs) handles btnupdate.click     try         me.user_scorestableadapter.insert(cstr(txtuser.text), cstr(txtgame.text), cdec(txtscore.text), cdate(txtdate.text))         me.user_scorestableadapter.fill(me.game_timedataset4._user_scores)         me.user_scorestableadapter.update(me.game_timedataset4._user_scores)     catch ex exception         messagebox.show(ex.message, "data input error")     end try end sub 

this code not updating access database. i'm updating after fill line.


Comments