HOME > .NET Framework > Forum > Incorrect syntax near the keyword 'where'. มันขึ้นแบบนี้อ่ะครับช่วยผมที่ตรงตัดออกไม่มีปัญหาแต่พอมายกเลิกรายการแล้วมาคืนค่า มันไม่ได้
Incorrect syntax near the keyword 'where'. มันขึ้นแบบนี้อ่ะครับช่วยผมที่ตรงตัดออกไม่มีปัญหาแต่พอมายกเลิกรายการแล้วมาคืนค่า มันไม่ได้
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Dim l As Integer
For j As Integer = 0 To l
If l = j Then
sql = "update Product set product_amount = product_amount + " & product_amount.Text & "where product_id = '" & product_id.Text & "'"
End If
Next
cmd = New SqlClient.SqlCommand(sql, cn)
If cmd.ExecuteNonQuery = 0 Then
End If
If confirm("คุณต้องการจะลบรายการนี้หรือไม่") = vbNo Then Return
listview_car.Items.Remove(listview_car.FocusedItem)
total_price()
End Sub