adamsoderqvist
Programmer
I would like to know what the code to update a DB should look like, using the objConnection.Execute command!
This is what I have to ecxecute a delete task:
...but what should the UPDATE syntax be, using SQL commands?
This is what I have to ecxecute a delete task:
Code:
Dim strSQL
strSQL = "DELETE FROM tblArtiklar WHERE ArtID=" & Request.QueryString("ArtID")
'Execute...
objConn.Execute strSQL
objConn.Close
Set objRS = Nothing
...but what should the UPDATE syntax be, using SQL commands?