Try
DataGridView1.CurrentCell = Nothing
cb = New SqlCommandBuilder(da)
da.SelectCommand.CommandText = "Select * from myDatatable"
cb.RefreshSchema()
da.Update(Dst.Tables("data"))
Dst.AcceptChanges()
MsgBox("保存成功!")
Catch ex As Exception
MsgBox(ex.Message)
End Try