编程论坛
注册
登录
编程论坛
→
VB.NET论坛
vb.net datagridview编辑数据后如何保存到SQL
shxlife
发布于 2022-04-01 22:54, 2260 次点击
各位大侠:
目前在 从SQL数据库读取数据,写入datagridview 中,并直接编辑数据,编辑完成r后如何批量写入SQL数据库原表中进行更新。请大家帮助提供代码,本人新手。谢谢
4 回复
#2
shxlife
2022-04-02 08:36
请帮忙
#3
ljtlily
2022-04-04 01:23
我做的话,应该是通过for语句,逐句写入到数据库中。如果嫌写入太频繁,也可以一次写入多条语句,比如insert的数据,则
sqlstring = "insert 语句1;" + "insert 语句2;"+ ... + "insert 语句n;"
之后执行写入语句,这样,就可以一次性将n个插入语句写入到数据库中
#4
xyxcc177
2022-04-05 14:06
Try
DataGridView1.CurrentCell = Nothing
cb = New SqlCommandBuilder(da)
da. = "Select * from myDatatable"
cb.RefreshSchema()
da.Update(Dst.Tables("data"))
Dst.AcceptChanges()
MsgBox("保存成功!")
Catch ex As Exception
MsgBox(ex.Message)
End Try
#5
shxlife
2022-04-11 16:54
好了,在后面加了 sqladp1.Update(DataGridView1.DataSource),批量成功了
sqladp1.Update(ds, "gpicc_name")
ds.AcceptChanges()
MsgBox("成功")
1