关于datagridview 更新问题
一查询界面:datagridview绑定的是一个数据库的表,运行之后该表中的数据都在datagridview中显示,对datagridview中的数据修改之后保存能成功。保存中我使用的是 try
Me.Validate()
Me.CustomersBindingSource.EndEdit()
Me.CustomersTableAdapter.Update(Me.NorthwindDataSet.Customers)
MsgBox("Update successful")
Catch ex As Exception
MsgBox("Update failed")
End Try
但是当我使用一查询按钮,把符合条件的结果在datagridview显示,对记录修改,保存后,后台数据库无法更新。应该怎么写啊,小弟刚接触。谢谢!!!