ผมต้องการ insert data จากใน Gridview เข้ามาเก็บในTable อะครับ
แต่ผลลัพธ์มันเก็บได้แค่แถวเดียวอ่ะครับ ขอคำชี้แนะหน่อยครับ
Code (VB.NET)
For i As Integer = 0 To GridBuy.Rows.Count() - 1
sql = "INSERT INTO tbBuyLog (idBarcode, Product)
Values ('" & GridBuy.Rows(i).Cells("idBarcode").Value & "'
,'" & GridBuy.Rows(i).Cells("Product").Value & "')"
Next
cmd.excuteNonquery()