I was creating a asp page that contained a recordset that was opened by calling a stored procedure from Sql Server 2000. At the time I was using an oledb connection and would receive the error:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding to the requested name or ordinal.
I then changed the connection string to ODBC and now the ASP runs fine. So besides what I just mention what are the difference that I need to be aware about? Which is better to use? Was I not calling the stored procedure properly using the OLEDB? I am confused.
Thanks in Advance.
BTW: This is my stored procedure call.
rsAnsVis.Open "sp_AnsVisCount",objConn,,,adCmdStoredProc