Connection timeout problem

  • Thread starter Thread starter majid
  • Start date Start date
M

majid

I have a problem with the connection timeout property .It
dosn't work properly . I have changed its value but
the "Timeout expired" error appears.
 
What are you doing when you get the time-out?

It could be that you need to change the command being run to make it return
quicker, or you could try setting the time-out to zero so that it waits
indefintely.
 
Connection timeout occurs because there is no available connection in the
pool or the server is too busy to respond. Most of the time it's because the
Connection pool is full (the limit is 100 connections). The connection pool
fills up either because your application is not closing/freeing connections
properly (the usual case) or your queries are taking too long.

hth
--
____________________________________
Bill Vaughn
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Back
Top