Hi Me Again!
The following connection
is giving the following error
As ususal any help is much appreciated.
TIA
Webflex
The following connection
Code:
<%@LANGUAGE="VBSCRIPT"%>
<%
dsn="DBQ=" & Server.Mappath("db/csoprojects.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};"
set conn = server.createObject("adodb.connection")
set RsLastRec = Server.CreateObject("ADODB.Recordset")
conn.open dsn
RsLastRec.Source = "SELECT * FROM users ORDER BY id DESC"
RsLastRec.CursorType = 0
RsLastRec.CursorLocation = 2
RsLastRec.LockType = 3
RsLastRec.Open
RsLastRec_numRows = 0
%>
is giving the following error
Code:
ADODB.Recordset error '800a0e7d'
Operation is not allowed on an object referencing a closed or invalid connection.
/globalapps/project/copyfinalrec.asp, line 11
As ususal any help is much appreciated.
TIA
Webflex