An access database vba UPDATE SQL
command has stopped working after Microsoft .NET Framework 4.8 Version 4.8.03761 installation today.
Users encounter the message:
"Run-time error '3340': Query " is corrupt.
The code that now fails is:
Public Function UpdateMachine()
Dim TEST_SQL_command As String
TEST_SQL_command = "UPDATE [People] " & SET [Machine] = '" & ComputerUsed & "' WHERE [Personid] = " & UserPersonID & ";"
DoCmd.SetWarnings False
DoCmd.RunSQL (TEST_SQL_Command)
DoCmd.SetWarning True
DoCmd.Save
End Function