Forum Moderators: open

Message Too Old, No Replies

Database Timing Out

Can HTACCESS adjust this?

         

inveni0

3:49 pm on Mar 13, 2007 (gmt 0)

10+ Year Member



I'm trying to grab about 300,000 rows of data from my database at one time, but my server times out at about 50k rows. (This is true, even when updating the rows.) Is there a way to increase this time out if I do not have direct access to my server?

txbakers

3:40 am on Mar 14, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can set the server.timeout in the code for that application. I don't know what language you are using, but in ASP it's as simple as Server.Timeout = 60 (in minutes)

bmcgee

3:00 am on Mar 19, 2007 (gmt 0)

10+ Year Member



For ASP, you use Server.ScriptTimeout = x
Where x = the value you supply is seconds, not minutes.