 |
|
ดูให้ทีคับมันลบทีเดียวทั้งdatabaseเลยคับใครก็ได้คับช่วยดูที |
|
 |
|
|
 |
 |
|
Private Sub DataGridView1_CellDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellDoubleClick
Dim sql4, sql5, sql6, sql7 As String
Dim userkeys = DataGridView1.Rows.Item(e.RowIndex).Cells(6).Value.ToString()
If MsgBox("คุณต้องการลบข้อมูล?", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
sql4 = "DELETE FROM Invoice where 'Part no=" & userkeys & "'"
command = New OleDbCommand(sql4, conn)
command.ExecuteNonQuery()
sql5 = "DELETE FROM Invoicetag where 'Part no=" & userkeys & "'"
command1 = New OleDbCommand(sql5, conn)
command1.ExecuteNonQuery()
DataGridView1.DataSource.clear()
sql6 = " select * from Invoice"
da = New OleDbDataAdapter(sql6, conn)
da.Fill(ds, "s")
sql7 = " select * from Invoicetag"
da = New OleDbDataAdapter(sql7, conn)
da.Fill(ds, "s")
DataGridView1.DataSource = ds.Tables("s")
MessageBox.Show("ลบข้อมูลเรียบร้อย")
End If
End Sub
Tag : .NET, Win (Windows App)
|
|
 |
 |
 |
 |
Date :
2010-10-26 10:04:50 |
By :
xsodearna |
View :
971 |
Reply :
9 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
จาก sql4 = "DELETE FROM Invoice where 'Part no=" & userkeys & "'"
เปลียนให้เป็น แบบนี้ดูครับ sql4 = "DELETE FROM Invoice where Part no='" & userkeys & "'"
|
 |
 |
 |
 |
Date :
2010-10-26 10:38:55 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Syntax error (missing operator) in query expression 'Part no='22''.
แบบที่ตอบมามันจะerrorแบบนี้อะคับ
|
 |
 |
 |
 |
Date :
2010-10-26 10:44:42 |
By :
xsodearna |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลบ ' หน้าคำว่า part no สิครับ
|
 |
 |
 |
 |
Date :
2010-10-26 10:48:48 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ถ้าลบมันจะerrorแบบที่ตอบอะคับ
|
 |
 |
 |
 |
Date :
2010-10-26 10:50:56 |
By :
xsodearna |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แล้วชื่อ field เป็นชื่อ Part no แบบนี้เลยเหรอครับ
|
 |
 |
 |
 |
Date :
2010-10-26 11:25:15 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ใช่คับตามนี้เลย
|
 |
 |
 |
 |
Date :
2010-10-26 11:34:18 |
By :
xsodearna |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตั้งชื่อฟิวด์ ในดาต้ามีเว้นวรรคได้ด้วย หรอครับ
งง!!!!
|
 |
 |
 |
 |
Date :
2010-10-26 11:37:46 |
By :
tee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
โดยปกติแล้วการตั้งชื่อ field จะห้ามตั้งชื่อ field ที่มีช่องว้างนะครับ ลองเปลียนชื่ field ดูครับ
|
 |
 |
 |
 |
Date :
2010-10-26 11:40:50 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วคับขอบคุณมากๆคับ
|
 |
 |
 |
 |
Date :
2010-10-26 11:58:33 |
By :
xsodearna |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|