These are my tables:
tbl_student (studID,Firstname)
My studid is priid
finger_template(Detail_ID,FingerprintMask)
I want to delete the record in tbl_student
and finger_template
. Here's my Query:
command = New MySqlCommand("DELETE from tbl_student where studid='" & priid & "'", connection, transaction)
Hope someone will help