N
Nevyn Twyll
I've been working on an asp.net application and everything's been great.
But suddenly, whether I'm tyring to use a database on my own machine, or on
my server, I'm getting a timeout when trying to open a database connection.
The error seems to happen regardless of what ASP.NET app I'm working
with/trying to debug.
It will open a few connections,
Here's the error:
Server Error in '/MyApplication' Application.
--------------------------------------------------------------------------------
Timeout expired. The timeout period elapsed prior to obtaining a connection
from the pool. This may have occurred because all pooled connections were in
use and max pool size was reached.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Timeout expired. The
timeout period elapsed prior to obtaining a connection from the pool. This
may have occurred because all pooled connections were in use and max pool
size was reached.
Source Error:
Line 156:
Line 157: // Open the database connection and execute the command
Line 158: myConnection.Open();
Line 159: SqlDataReader result =
myCommand.ExecuteReader(CommandBehavior.CloseConnection);
Line 160:
Source File:
f:\dev\celttech\equitycheck\equitycheck\components\configuration.cs Line:
158
Stack Trace:
[InvalidOperationException: Timeout expired. The timeout period elapsed
prior to obtaining a connection from the pool. This may have occurred
because all pooled connections were in use and max pool size was reached.]
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString
options, Boolean& isInTransaction) +396
System.Data.SqlClient.SqlConnection.Open() +384
ASPNetPortal.PortalSettings..ctor(Int32 tabIndex, Int32 tabId) in
f:\dev\celttech\equitycheck\equitycheck\components\configuration.cs:158
ASPNetPortal.Global.Application_BeginRequest(Object sender, EventArgs e)
in F:\dev\CeltTech\EquityCheck\EquityCheck\Global.asax.cs:47
System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
+60
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&
completedSynchronously) +87
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
The connection string I use in my web.config is:
<add key="ConnectionString"
value="server=manwe;Trusted_Connection=false;database=MyDatabase;Application
Name=MyApplication;User ID=sqluser; Password=sqlpassword;"/>
Help?
But suddenly, whether I'm tyring to use a database on my own machine, or on
my server, I'm getting a timeout when trying to open a database connection.
The error seems to happen regardless of what ASP.NET app I'm working
with/trying to debug.
It will open a few connections,
Here's the error:
Server Error in '/MyApplication' Application.
--------------------------------------------------------------------------------
Timeout expired. The timeout period elapsed prior to obtaining a connection
from the pool. This may have occurred because all pooled connections were in
use and max pool size was reached.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Timeout expired. The
timeout period elapsed prior to obtaining a connection from the pool. This
may have occurred because all pooled connections were in use and max pool
size was reached.
Source Error:
Line 156:
Line 157: // Open the database connection and execute the command
Line 158: myConnection.Open();
Line 159: SqlDataReader result =
myCommand.ExecuteReader(CommandBehavior.CloseConnection);
Line 160:
Source File:
f:\dev\celttech\equitycheck\equitycheck\components\configuration.cs Line:
158
Stack Trace:
[InvalidOperationException: Timeout expired. The timeout period elapsed
prior to obtaining a connection from the pool. This may have occurred
because all pooled connections were in use and max pool size was reached.]
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString
options, Boolean& isInTransaction) +396
System.Data.SqlClient.SqlConnection.Open() +384
ASPNetPortal.PortalSettings..ctor(Int32 tabIndex, Int32 tabId) in
f:\dev\celttech\equitycheck\equitycheck\components\configuration.cs:158
ASPNetPortal.Global.Application_BeginRequest(Object sender, EventArgs e)
in F:\dev\CeltTech\EquityCheck\EquityCheck\Global.asax.cs:47
System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
+60
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&
completedSynchronously) +87
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
The connection string I use in my web.config is:
<add key="ConnectionString"
value="server=manwe;Trusted_Connection=false;database=MyDatabase;Application
Name=MyApplication;User ID=sqluser; Password=sqlpassword;"/>
Help?