I'm using the following SQL to update a table, however it is throwing back an "Invalid UPDATE Syntax" error message.
Could someone possibly help me as to what is wrong with it?
Thanks
Code:
DoCmd.RunSQL "UPDATE MSysObjects " & _
"SET Database = strInputFileName " & _
"WHERE Not IsNull(Database) ;"
Could someone possibly help me as to what is wrong with it?
Thanks