Nov 12, 2002 #1 Pinan IS-IT--Management Jul 15, 2002 40 US I am querying a large amount of data, and periodically, it does not return before it gets timed out. How do I set the time before timeout longer?
I am querying a large amount of data, and periodically, it does not return before it gets timed out. How do I set the time before timeout longer?
Nov 12, 2002 #2 webmigit Programmer Aug 3, 2001 2,027 US Set the timeout of the query to the timeout length you want, note, it is in milliseconds... Upvote 0 Downvote
Nov 12, 2002 Thread starter #3 Pinan IS-IT--Management Jul 15, 2002 40 US OK, I should have been more specific. I need the syntax for it. Im kind of a newbie with cold fusion. Upvote 0 Downvote
OK, I should have been more specific. I need the syntax for it. Im kind of a newbie with cold fusion.
Nov 12, 2002 #4 webmigit Programmer Aug 3, 2001 2,027 US Code: <CFQUERY..attributes here..timeout="4000">...sql statement..</CFQUERY> would set the timeout to 4 seconds. Upvote 0 Downvote
Code: <CFQUERY..attributes here..timeout="4000">...sql statement..</CFQUERY> would set the timeout to 4 seconds.
Nov 13, 2002 Thread starter #5 Pinan IS-IT--Management Jul 15, 2002 40 US Thanks! Thats exactly what I was looking for. Upvote 0 Downvote