Update database help [modified]
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Good day everyone, I need to update a record into the database Access via table adapter in VB.net 2005. The dataset is updated, but the record in the database Access is not. Could anyone knows how to fix this problem? Please help.I'd appreciate it so much. Thanks (Student_Details:table name)
MyDataSet.Student\_Details.Rows(2).Item(3) = "new password" MyDataSet.GetChanges(DataRowState.Modified) Student\_DetailsTableAdapter1.Update(MyDataSet) MyDataSet.AcceptChanges() Me.Validate() Me.Student\_DetailsBindingSource.EndEdit() Me.Student\_DetailsTableAdapter1.Update(Me.MyDataSet.Student\_Details)
-- modified at 11:11 Saturday 14th October, 2006
eric