multiplex77
Programmer
Hi,
Is the command:
connection.Execute "Update table1 set field1 = 'text1'"
...recommended? or is it better to use:
recordset.Open "Update ..."?
I was told that the Execute command gives problems esp. in a multi-user environment. Is this true? What other problems (if any) does it cause.
I don't need to view or manipulate the recordset. Just need to execute the Update or Insert query.
Thanks for the help!
Is the command:
connection.Execute "Update table1 set field1 = 'text1'"
...recommended? or is it better to use:
recordset.Open "Update ..."?
I was told that the Execute command gives problems esp. in a multi-user environment. Is this true? What other problems (if any) does it cause.
I don't need to view or manipulate the recordset. Just need to execute the Update or Insert query.
Thanks for the help!