Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error Code 800a0cc1 mean? 1

Status
Not open for further replies.

cctrinh

MIS
Feb 2, 2001
25
US
I got the following error code and don't know what it mean? Can someone help please? Thank you

ADODB.Recordset error '800a0cc1'

Item cannot be found in the collection corresponding to the requested name or ordinal.

/ASPTest/User.asp, line 21
 
Usually means you're asking for a column name that doesn't exist, or you've misspelled a column name when trying to write to the page...

This can happen if your query is "SELECT column1,column2 FROM myTable"

but then use:
Response.Write(objRS("col2"))
 
Jemminger is right:
compare the column-names in your SQL-string to the names in your DB! This is not a bug - it's an undocumented feature...
;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top