设置信息
我有一个带有DataGrid视图的“Form1”(“DataGridView1”),它填充了SQL服务器表中的数据。 这是一个简单的表,大约有10条记录。
使用的表是“jamesTestVBlol” 数据集名为“DataSetJames.xsd” 我相信表适配器被称为“JamesTestVBlolTableAdaptor”
问题
有没有办法,我可以更新记录并将这些更改发送回服务器。
e.g。第1列,记录1我想更改为“TEST”并在服务器上更新此表。
我唯一的代码是:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'DataSetJames.jamesTestVBlol' table.' You can move, or remove it, as needed.
Me.JamesTestVBlolTableAdapter.Fill(Me.DataSetJames.jamesTestVBlol)
End Sub
End Class
有人可以帮我看看我需要看的地方吗? 我试过阅读几个在线教程,但一般都是我的头脑。
谢谢, 詹姆斯。