I have an Acces 2000 dataase set up with an ADO connection to another Access 2000 database.
I am trying to get a very simply SQL statement to work:
Each time I run it, I get "Syntax error in Update Statement."
Yet, I can run:
with no problem, the only difference being the field that I am trying to update.
Both fields are identical in properties.
Any help would be greatly apprceiated. I am stumped.
JBG
I am trying to get a very simply SQL statement to work:
Code:
m_objCon.Execute "UPDATE tblControl " & _
" SET Match = False WHERE ControlID = " & varCIDarray(x)
Each time I run it, I get "Syntax error in Update Statement."
Yet, I can run:
Code:
m_objCon.Execute "UPDATE tblControl " & _
" SET blnIsLocked = False WHERE ControlID = " & varCIDarray(x)
with no problem, the only difference being the field that I am trying to update.
Both fields are identical in properties.
Any help would be greatly apprceiated. I am stumped.
JBG