I am trying to update a table when a selection is double clicked i keep getting a error that i am missing an operator in my sql here is what my sql looks like
Dim sql As String
sql = "UPDATE CitationComment SET CitationComment.Citation_Viewed = " & True & " " & _
" WERE (comment_ID = " & citid & " & Employee_ID = " & empid & "
"
Dim updtecit As New update(sql, "EmpFrmCitation"
updtecit.editData()
updtecit = Nothing
I think I am close on this but have been fighting with it for a while now any help would be very much apreciated
thank you in advance
The OX
Dim sql As String
sql = "UPDATE CitationComment SET CitationComment.Citation_Viewed = " & True & " " & _
" WERE (comment_ID = " & citid & " & Employee_ID = " & empid & "
Dim updtecit As New update(sql, "EmpFrmCitation"
updtecit.editData()
updtecit = Nothing
I think I am close on this but have been fighting with it for a while now any help would be very much apreciated
thank you in advance
The OX