raywood5 0 Newbie Poster

I am trying to use an ASP upload file to upload banners. I am receiving this error:

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.

/links/add_banner_upload.asp, line 98


Below is the code


Query = "SELECT * FROM banner"
Set RS = Server.CreateObject("ADODB.Recordset")
RS.Open Query, Connector, 3, 3 ( THIS IS LINE 98)
RS.AddNew
RS("name") = Uploader.Form("name")
RS("email") = Uploader.Form("email")
RS("site") = Uploader.Form("site")
RS("link_address") = Uploader.Form("link_address")
RS("link_back") = Uploader.Form("link_back")
RS("image") = File.FileName
RS("size") = File.FileSize
RS("type") = File.ContentType
RS("date") = date()
RS.Update
RS.close
Connector.close

I am new at this so having difficulty.