2016-03-07 125 views
-5

我正在使用VB.Net與SQL Server,並試圖將在DataGridView中修改的值集成到SQL Server數據庫中。一些關於如何去做的指導將不勝感激。如何使用DataGridView在SQL Server中添加多個記錄

+0

請添加您迄今爲止編寫的代碼。 –

+0

我只想知道實現這種處理的方法 – Waiil

+0

看看這個問題:[將DataGrid數據保存到VB.Net中的SQL Server數據庫](https://stackoverflow.com/questions/26192477/save-datagrid-數據到SQL服務器數據庫,在-VB網)。您可能會發現它是一個有用的指南。 –

回答

0

有代碼

Private Sub DataGridView1_CellValueChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellValueChanged 
     If sql.connect = True Then 
      Dim i As New Integer 

      While (i < DataGridView1.RowCount) 


       sql.exereq("update avance set montant='" & DataGridView1.Rows(i).Cells(3).Value & "' where IdFuncionario='" & DataGridView1.Rows(i).Cells(0).Value & "'") 
       i += 1 
      End While 
     End If 
    End Sub 
相關問題