Robert: Mehrere Felder mit SQL updaten

Beitrag lesen

Hallo!

Der Morgen ist noch halbwegs frisch und ich hab mal wieder ein Problem mit ASP ;-)

Und zwar möchte ich mehrere Felder in meiner Datenbank über SQL aktualisieren. Derzeit hab ich es probiert wie folgt:

if request.form("Pfad") <> "" then
  MyConn.Execute "UPDATE Voting SET Download='" & Request.Form("Download") & "' WHERE Download='" & Request.Form("Download") & "';"
  MyConn.Execute "UPDATE Voting SET Pfad='" & Request.Form("Pfad") & "' WHERE Download='" & Request.Form("Download") & "';"
  MyConn.Execute "UPDATE Voting SET Beschreibung='" & Request.Form("Beschreibung") & "' WHERE Download='" & Request.Form("Download") & "';"
end if

Aber das verursacht:

Error Type:
ADODB.Field (0x80020009)
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

Hat einer ne Ahnung, wie ich des am besten löse?

Robert