omarswan
Its basic but Should work
Code:
Dim sSQL as string
sSQL = "UPDATE Table1 SET Table1.user_Name = 'Harry'" _
& " WHERE (((Table1.user_Name)='tom'));"
cnn.Execute sSQL
sSQL = "UPDATE Table2 SET Table2.user_Name = 'Harry'" _
& " WHERE (((Table2.user_Name)='tom'));"
cnn.Execute sSQL
sSQL = "UPDATE Table3 SET Table3.user_Name = 'Harry'" _
& " WHERE (((Table3.user_Name)='tom'));"
cnn.Execute sSQL
You may have to wrap it all in transactions to make sure no one is editing records the same time you are
Gazza