Hello All,
Been awhile since I posted! (Haven't had a chance to use ASP in a while.)
Anyway, I'm trying to update a record my SQL database and the update APPENDS the new data to the existing column data. Here's the update statement:
Code:
sql="UPDATE noi_kb SET "
sql=sql & " Problem_Status = '" & request.form("Problem_Status") & "' ,"
sql=sql & "resolution='" & Request.Form("resolution") & "' "
sql=sql & " WHERE row_id = '" & row_id & "' "
Connnoikb.Execute sql