Hello
I 've two table :
one
server
message
two
server
field1
filed2
i need to update one.message with "two.fied1+two.field2" as after edit of two table
Can Anyone help me ?
i try to use :
string mesg
mesg = "Rif:" & dict("field1") "Rif:" & dict("field2")
strSQLMSG = "UPDATE one set message = & mesg where server = '" & dict("server") & "'"
dbConnection.Execute strSQLMSG
but it' wrong