473,386 Members | 1,795 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

0x800A0E7D error--don't get it

I had some text links at the top of all my pages (in one include file),
which worked just fine. But I was asked to make it so that people in a
certain department, (this is an Intranet app) would see a particular link
that nobody else would. You'd find their name by getting their network
logon. This worked fine on all my pages, but for some reason, on one page,
it gives me an error. First, the error:

Error Type:
ADODB.Recordset (0x800A0E7D)
The connection cannot be used to perform this operation. It is either closed
or invalid in this context.
/includes/header.inc, line 32

Before we go any farther, please note that I went to ASPFAQ.com, and
couldn't find an answer there which fit my situation. The article that
seemed to have the best shot for me was
http://www.aspfaq.com/show.asp?id=2191, but no dice.

Anyway, here's my code:

'this first line is there because when you get the network logon name, it is
prefixed by the domain name and a backslash. Since the db I am pulling data
from has only the logon name, I had to get rid of the first part:

strLogon= Replace(Request.ServerVariables("LOGON_USER"),"dom ainname\","")
Set RSLogon = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
'this next line is the infamous line 32
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080

strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
RSLogon.Close
Set RSLogon = Nothing

If strDepartmentID = "9" then%>
do some stuff
End if

Keep in mind that this code works fine on other pages, just not this one. In
fact, it works when you first bring this page up, but it does submit to
itself, and when it does, you should see a "thank-you"-type message, but get
the error instead. But in the code at the top of the page, before it decides
if it's the original page or the repost, I have the same includes which
establish the same db connection. I mention this because the first thing
you look for is the difference between the pages that work and the ones that
don't. In fact, this code is in an include file which is used on all pages,
and that rules out any differences in code, you'd think.

Jul 19 '05 #1
8 2248
First, you do not seem to be opening a database connection.
Second, you seem to be executing the query twice.
Third, you are not checking to see if the query returns anything before
attempting to access column data.
Fourth, you should not explicitly create a recordset for that type of query.
Try:

strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
Set RSLogon = objConnection.execute(strSQL,,1)
If Not RSLogon.EOF Then
strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
End If
RSLogon.Close
Set RSLogon = Nothing
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"middletree" <mi********@htomail.com> wrote in message
news:uh**************@tk2msftngp13.phx.gbl...
I had some text links at the top of all my pages (in one include file),
which worked just fine. But I was asked to make it so that people in a
certain department, (this is an Intranet app) would see a particular link
that nobody else would. You'd find their name by getting their network
logon. This worked fine on all my pages, but for some reason, on one page, it gives me an error. First, the error:

Error Type:
ADODB.Recordset (0x800A0E7D)
The connection cannot be used to perform this operation. It is either closed or invalid in this context.
/includes/header.inc, line 32

Before we go any farther, please note that I went to ASPFAQ.com, and
couldn't find an answer there which fit my situation. The article that
seemed to have the best shot for me was
http://www.aspfaq.com/show.asp?id=2191, but no dice.

Anyway, here's my code:

'this first line is there because when you get the network logon name, it is prefixed by the domain name and a backslash. Since the db I am pulling data from has only the logon name, I had to get rid of the first part:

strLogon= Replace(Request.ServerVariables("LOGON_USER"),"dom ainname\","") Set RSLogon = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
'this next line is the infamous line 32
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080

strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
RSLogon.Close
Set RSLogon = Nothing

If strDepartmentID = "9" then%>
do some stuff
End if

Keep in mind that this code works fine on other pages, just not this one. In fact, it works when you first bring this page up, but it does submit to
itself, and when it does, you should see a "thank-you"-type message, but get the error instead. But in the code at the top of the page, before it decides if it's the original page or the repost, I have the same includes which
establish the same db connection. I mention this because the first thing
you look for is the difference between the pages that work and the ones that don't. In fact, this code is in an include file which is used on all pages, and that rules out any differences in code, you'd think.

Jul 19 '05 #2
OK, I'll try it out. Thanks.

I am not sure why I shouldn't use a recordset, though.

I'm also not sure why this works on every other page which uses this same
exact code.
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:ep*************@tk2msftngp13.phx.gbl...
First, you do not seem to be opening a database connection.
Second, you seem to be executing the query twice.
Third, you are not checking to see if the query returns anything before
attempting to access column data.
Fourth, you should not explicitly create a recordset for that type of query. Try:

strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
Set RSLogon = objConnection.execute(strSQL,,1)
If Not RSLogon.EOF Then
strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
End If
RSLogon.Close
Set RSLogon = Nothing
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"middletree" <mi********@htomail.com> wrote in message
news:uh**************@tk2msftngp13.phx.gbl...
I had some text links at the top of all my pages (in one include file),
which worked just fine. But I was asked to make it so that people in a
certain department, (this is an Intranet app) would see a particular link that nobody else would. You'd find their name by getting their network
logon. This worked fine on all my pages, but for some reason, on one page,
it gives me an error. First, the error:

Error Type:
ADODB.Recordset (0x800A0E7D)
The connection cannot be used to perform this operation. It is either

closed
or invalid in this context.
/includes/header.inc, line 32

Before we go any farther, please note that I went to ASPFAQ.com, and
couldn't find an answer there which fit my situation. The article that
seemed to have the best shot for me was
http://www.aspfaq.com/show.asp?id=2191, but no dice.

Anyway, here's my code:

'this first line is there because when you get the network logon name, it is
prefixed by the domain name and a backslash. Since the db I am pulling data
from has only the logon name, I had to get rid of the first part:

strLogon=

Replace(Request.ServerVariables("LOGON_USER"),"dom ainname\","")
Set RSLogon = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
'this next line is the infamous line 32
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080

strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
RSLogon.Close
Set RSLogon = Nothing

If strDepartmentID = "9" then%>
do some stuff
End if

Keep in mind that this code works fine on other pages, just not this
one. In
fact, it works when you first bring this page up, but it does submit to
itself, and when it does, you should see a "thank-you"-type message, but

get
the error instead. But in the code at the top of the page, before it

decides
if it's the original page or the repost, I have the same includes which
establish the same db connection. I mention this because the first

thing you look for is the difference between the pages that work and the ones

that
don't. In fact, this code is in an include file which is used on all

pages,
and that rules out any differences in code, you'd think.


Jul 19 '05 #3
Mark Schupp wrote:
First, you do not seem to be opening a database connection.
Right, I'm not sure of this as well. Middletree, have you simply not shown
us the code where you opened the objConnection object?
Second, you seem to be executing the query twice.
That is true. Middletree, was one of these staements supposed to be
commented out?
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080

The second statement is simply not correct. It should not be there. That is
the statement that should be used to execute a non-records-returning query.
Actually, I prefer to explicitly set the Options argument in the Open
statement (it's got nothing to do with your problem)

RSLogon.Open strSQL, objConnection,,,1 '1 = adCmdText
Third, you are not checking to see if the query returns anything
before attempting to access column data.
Right. Always check the recordset's EOF property before attempting to access
any of its data.
Fourth, you should not explicitly create a recordset for that type of
query. Try:


Why not? What possible difference can that make? Whether you explicitly
create a recordset and then call its Open method, or use Execute to tell ADO
to create a recordset and open it should make absolutely no difference. I
hate when this advice is given because:
1. It's a waste of time - it's never the root of the problem
2. It confuses newcomers who think you are telling them not to use a
recordset - we're here to help people, not to further confuse them.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 19 '05 #4
middletree wrote:
OK, I'll try it out. Thanks.

I am not sure why I shouldn't use a recordset, though.

To Mark: See? He thought you were telling him not to use a recordset!

middletree, just to clarify: you are always using a recordset, even when you
use Execute (unless you use that &h00000080 constant (adExecuteNoRecords) to
tell ADO not to create a recordset).

FWIW, I have never seen a problem solved by switching from

Set rs=server.createobject("adodb.recordset")
rs.open ...

to

set rs = conn.execute(...)

I have seen cases where problems were masked by the switch, but the root
problem was never addressed because the switch made everything "work".

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 19 '05 #5
Bob:

As always, thanks for you help. I have comments below:

"Bob Barrows" <re******@NOyahoo.SPAMcom> wrote in message
news:OY**************@TK2MSFTNGP12.phx.gbl...
Mark Schupp wrote:
First, you do not seem to be opening a database connection.
Right, I'm not sure of this as well. Middletree, have you simply not shown
us the code where you opened the objConnection object?


Well, I have an include file for every page which establishes the
connection. But that's on the pages where this works, and the one where it
doesn't.
Anyway, here's that code:
Dim strDBConnection
strDBConnection = _
"Provider=SQLOLEDB;" & _
"Persist Security Info=False;" & _
"Data Source=xxxxxx;" & _
"User ID=xxxxx;" & _
"Password=xxxxx;" & _
"Database=xxxxxx;"

Dim objConnection
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open strDBConnection
Second, you seem to be executing the query twice.
That is true. Middletree, was one of these statements supposed to be
commented out?
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080


What happened there was I tried a million things before being so exhausted
by the whole thing that I posted a question.
Here's the code which is currently in use, and which works on all pages
except the one. Note that the Recordset is simply called RS, not RSLogon,
as the use of a rs name that was used elsewhere was one of many things I
thought might be a conflict.
(I replaced our network domain name with x's)

strLogon= Replace(Request.ServerVariables("LOGON_USER"),"xxx xx\","")

Set RS = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
RS.Open strSQL, objConnection

strDepartmentID = rs("DepartmentID")
strEmployeeID = rs("EmployeeID")
rs.Close
Set rs = Nothing

If strDepartmentID = "9" then%>
<img src="images/spacer.gif" width="22" border="0">
<a href="DisplaySortableTickets.asp?selectTSE=<%=strE mployeeID%>">
<span class="cellsmall">Your open Tickets</span></a>
<%Else
end if
The second statement is simply not correct. It should not be there. That is the statement that should be used to execute a non-records-returning query. Actually, I prefer to explicitly set the Options argument in the Open
statement (it's got nothing to do with your problem)

RSLogon.Open strSQL, objConnection,,,1 '1 = adCmdText
Third, you are not checking to see if the query returns anything
before attempting to access column data.
Right. Always check the recordset's EOF property before attempting to

access any of its data.


Noted. thanks.
Jul 19 '05 #6
> > Fourth, you should not explicitly create a recordset for that type of
query. Try:
Why not? What possible difference can that make? Whether you explicitly
create a recordset and then call its Open method, or use Execute to tell

ADO to create a recordset and open it should make absolutely no difference. I
hate when this advice is given because:
1. It's a waste of time - it's never the root of the problem
2. It confuses newcomers who think you are telling them not to use a
recordset - we're here to help people, not to further confuse them.
2 lines of code = 2 chances to mess up
1 line of code = 1 chance.

I probably would not have bothered with that bit of advice except that he
use both rs.open and conn.execute on the same SQL statement which indicates
a bit of confusion about recordset usage anyway. My guess as to his actual
problem is that he is not getting any records back. Since he was not
checking for EOF this would cause an error.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Bob Barrows" <re******@NOyahoo.SPAMcom> wrote in message
news:OY**************@TK2MSFTNGP12.phx.gbl... Mark Schupp wrote:
First, you do not seem to be opening a database connection.
Right, I'm not sure of this as well. Middletree, have you simply not shown
us the code where you opened the objConnection object?
Second, you seem to be executing the query twice.


That is true. Middletree, was one of these staements supposed to be
commented out?
RSLogon.Open strSQL, objConnection
objConnection.execute strSQL,,&h00000080

The second statement is simply not correct. It should not be there. That

is the statement that should be used to execute a non-records-returning query. Actually, I prefer to explicitly set the Options argument in the Open
statement (it's got nothing to do with your problem)

RSLogon.Open strSQL, objConnection,,,1 '1 = adCmdText
Third, you are not checking to see if the query returns anything
before attempting to access column data.
Right. Always check the recordset's EOF property before attempting to

access any of its data.
Fourth, you should not explicitly create a recordset for that type of
query. Try:
Why not? What possible difference can that make? Whether you explicitly
create a recordset and then call its Open method, or use Execute to tell

ADO to create a recordset and open it should make absolutely no difference. I
hate when this advice is given because:
1. It's a waste of time - it's never the root of the problem
2. It confuses newcomers who think you are telling them not to use a
recordset - we're here to help people, not to further confuse them.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 19 '05 #7
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:e3**************@TK2MSFTNGP12.phx.gbl...

I probably would not have bothered with that bit of advice except that he
use both rs.open and conn.execute on the same SQL statement which indicates a bit of confusion about recordset usage anyway. My guess as to his actual
problem is that he is not getting any records back. Since he was not
checking for EOF this would cause an error.

You are correct when you say that I am confused about recordsets. For some
reason, in 4 years of doing ASP (although not 40 hours per week), I have not
gotten connection strings, recordsets, anything related to that sort of
thing. Not sure why. I'm not dumb. 2 college degrees, won the spelling bee
in 5th grade, etc.

But it (lack of understanding about rs's and connections) usually doesn't
pose a problem, as I have code I can re-use. But I cannot emphasize enough
that what you saw of my code was the last in a chain of trying a million
different things. I can assure you that most of the day, I wasn't trying to
connect twice.
Jul 19 '05 #8
Well, I put in Mark's code below, and still got an "Object Required" error.
Only on that one page. Not sure why. But since the line it pointed to was
the objConnection.execute, I simply pasted in this code from the db
connection include file that I have at the top of all pages:

Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open strDBConnection
I have no idea why this works, but it does. Doesn't seem to affect any
other pages negatively, so I'm thankful for that. But it shouldn't have been
a problem on this one page, as the include file is here on this page, as
well, so objConnection should be there. I have no idea why this fixed it,
but am not up for spending any more time on this, as I have other fish to
fry.

thanks for your help, guys!

James W
www.middletree.net
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:ep*************@tk2msftngp13.phx.gbl...
First, you do not seem to be opening a database connection.
Second, you seem to be executing the query twice.
Third, you are not checking to see if the query returns anything before
attempting to access column data.
Fourth, you should not explicitly create a recordset for that type of query. Try:

strSQL = "SELECT EmployeeID, DepartmentID "
strSQL = strSQL & "FROM Employee "
strSQL = strSQL & "WHERE NetworkID = '"&strLogon&"'"
Set RSLogon = objConnection.execute(strSQL,,1)
If Not RSLogon.EOF Then
strDepartmentID = RSLogon("DepartmentID")
strEmployeeID = RSLogon("EmployeeID")
End If
RSLogon.Close
Set RSLogon = Nothing
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tom Petersen | last post by:
I have been copying and pasting code and this has been working, but now I get this error: Error Type: ADODB.Recordset (0x800A0E7D) Operation is not allowed on an object referencing a closed or...
2
by: Oli | last post by:
Hi Here is the problem section of code..... <% else intOrderID = cstr(Session("OrderID")) set rsProd = Server.CreateObject("ADODB.Recordset")
0
by: umshamma | last post by:
I am creating an asp programm for our employee leaves tracking... i am getting this error ADODB.Recordset (0x800A0E7D) The connection cannot be used to perform this operation. It is either closed or...
3
by: nordwall | last post by:
Hi! I am starting out with ASP and have tried the following code, to no avail as I get a error: ADODB.Recordset.1 (0x800A0E7D) Invalid connection. /save.asp, line 12 <% uuid =...
5
by: liv | last post by:
<%@LANGUAGE="VBSCRIPT" %> <% dim id_utilizator, conn, rs id_utilizator = Session("id_utilizator") if id_utilizator ="" then Response.Redirect("logare_ut.asp") end if set...
3
by: pooja1982 | last post by:
Hi, I m getting this message after executing the following code <% CALL OPENDATACON DIM RS SET RS=SERVER.CreateObject ("ADODB.RECORDSET") s="select * from dbpassenger order by ref_no" CALL...
7
by: STUPIDFORUM | last post by:
ADODB.Recordset "The connection cannot be used to perform this operation." "Microsoft Access Driver" ERROR 0X800A0E7D OLE exception from "ADODB.Recordset": The connection cannot be used to...
2
by: colesslow | last post by:
i have these asp files to edit a record in my sql server..but it can't be done. the error is Error Type: ADODB.Recordset (0x800A0E7D) The connection cannot be used to perform this operation. It...
1
by: shivasusan | last post by:
Hi Friends! Please Help me! How i can solve this error? Please explain me, what is the error and how to solve? Error Type: ADODB.Recordset (0x800A0E7D) The connection cannot be used to...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.