如何对数据库中datagridview的内容求和。我有一个代码显示,但它只是更新,而不是总和。
下面是我的保存代码:
Public Sub save_dgv()
Try
con.Close()
con.Open()
Dim scb = New MySqlCommandBuilder(SDA)
SDA.Update(dbDataset)
MessageBox.Show("Submitted!")
con.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
sample:
user1
id--row1--row2--total
1 --25 -- 23 --48
user2
id--row1--row2--total
1 --25 -- 23 --48
output
id--row1--row2--total
1 --50-- 46--96
1条答案
按热度按时间chhkpiq41#
请尝试以下操作。根据数据库调整数据类型。在sql server中工作,但未在mysql中测试。