| | |
ADODB.Recordset error '800a0bb9'
Please support our ASP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Jan 2005
Posts: 10
Reputation:
Solved Threads: 1
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.
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.
![]() |
Similar Threads
- Recordset Error (Visual Basic 4 / 5 / 6)
- Bind ListBox to ADODB.Recordset (Visual Basic 4 / 5 / 6)
- ADODB.Field error '80020009' (ASP)
- ADODB.Field error '80020009' (ASP)
- ADODB.Recordset (0x800A0E78):Operation is not allowed when the object is closed. (ASP)
- asp problem ADODB.Recordset error '800a0bb9' (ASP)
- problem with ADODB.Field error '80020009' (ASP)
- "ADODB Recordset error" (ASP)
Other Threads in the ASP Forum
- Previous Thread: changing the image dynamically
- Next Thread: Cant figure this error out: "The page you requested, has produced an error"
| Thread Tools | Search this Thread |
archive asp asp.net aspandmssqlserver2005 aspandmssqlserver2005connection aspconnection connection database databaseconnection dreamweaver excel fso iis msmsql mssql2005 mssqlserver2005 mssqlserver2005andasp mssqlserverandasp opentextfile record searchbox selectoption single specfic sqlserver sqlserverconnection windows7





