Ask a Question related to ASP.NET General, Design and Development.
-
James Brown #1
There is already an open DataReader associated with this Connection
I have an ASP .NET application. [VS 2002, .NET Framework 1.0 SP2]
In the application, if I execute a long running query (which may time
out or something I guess) from one browser window, and in another
instance of the same web application in another browser window,
execute a very quick query, I get the above error message.
I have noted the fix at:
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;Q319345[/url]
But I already have Service Pack 2 installed. Please help!
Thanks in Advance
James
James Brown Guest
-
#39239 [NEW]: pconnect canīt reuse open connection
From: marcos dot neves at gmail dot com Operating system: FreeBSD 5.4-STABLE i386 PHP version: 5.1.6 PHP Bug Type: MySQL... -
JDBC driver connection to Span Open db
Hi there, Has anyone had experience in connecting to a Span Open DB. I have a feeling that there is a problem with the JDBC driver connecting... -
Keeping Connection Open - Consequences?
I have an application where I need to keep the connection open because my application monitors 2 separate databases ever 1 second. Is there a... -
Can I open a database connection in my GLOBAL.ASA file?
Can I use my GLOBAL.ASA file to open a database connection before each page loads? Would someone mind posting a very simple example? I tried to... -
connection.open issue??
This code usually works the first time I run it, but if I hit refresh it fails with: "Unspecified error - /cosmetic/ask_dup.asp, line 12" which... -
bruce barker #2
Re: There is already an open DataReader associated with this Connection
bug in your code.
you probably have a connection defined a static variable (shared or public
in a module in vb.net). this would lead to the same connection being used by
all page requests (even concurrent), and as a connection only supports one
active query at a time, you get this error.
-- bruce (sqlwork.com)
"James Brown" <jbrown_gtfc@hotmail.com> wrote in message
news:7a947814.0306260125.6425510a@posting.google.c om...> I have an ASP .NET application. [VS 2002, .NET Framework 1.0 SP2]
>
> In the application, if I execute a long running query (which may time
> out or something I guess) from one browser window, and in another
> instance of the same web application in another browser window,
> execute a very quick query, I get the above error message.
>
> I have noted the fix at:
> [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;Q319345[/url]
>
> But I already have Service Pack 2 installed. Please help!
>
> Thanks in Advance
> James
bruce barker Guest



Reply With Quote

