Im using the update statment to change some values in my DB
VB Code:
SQLupdate = "UPDATE FILE_ID (ID1, ID2, ID3) VALUES (42, 34, 34)" CN.Execute SQLupdate
My question is how do I select which record to update? I already have a recordset open at the record I want with this...
VB Code:
Set rsFiles = Server.CreateObject("ADODB.Recordset") rsFiles.Open "SELECT * FROM FILE_ID WHERE ID1=23" , CN, 3, 3




Reply With Quote