I have a WPF application that directly communicates with a MS SQL 2008 database.
In the connection string, I have explicitly set the connection time out to be "Connect Timeout=6000", which should give me ten minutes.
I see that my application gives me a timeout error in just a little more than a minute. How can I ensure that I am given 10 minutes to complete my query?
I don't know if there's something missing in my connection string setup or database call, or whether this should be configured from the MS SQL server.