I created an ABODB.connection and then issue this command.
Nothing happens. The Table is ProjectList and the 2 fields are both text fields, Project ID and ProcessingStatus.
Suggestions?
Code:
Let QueryTxt = UPDATE ProjectList SET ProcessingStatus = 'This is a test' WHERE 'Project ID' = '1080'
Set cnn = New ADODB.Connection
With cnn
.Open "mypath\myfile" ' I know this part is correct.
.Execute QueryTxt
End With
Nothing happens. The Table is ProjectList and the 2 fields are both text fields, Project ID and ProcessingStatus.
Suggestions?