gletchford
Starting Member
USA
2 Posts |
Posted - 29 August 2009 : 12:17:02
|
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/forum/Default.asp, line 91
This is the message I am receiving when I attempt to open the forum. I am using an access database and I believe the permissions are correct.
strSql = "SELECT P_COUNT, T_COUNT, U_COUNT " &_ " FROM " & strTablePrefix & "TOTALS"
Set rs1 = Server.CreateObject("ADODB.Recordset") rs1.open strSql, my_Conn
Users = rs1("U_COUNT") Topics = rs1("T_COUNT") Posts = rs1("P_COUNT")
is the code surrounding the error of which line 91 is the line that says Users= rs1("U_COUNT")
Any ideas? And in advance, thanks for the thoughts.
Gary |
|