Reputation: 6731
I've had more heartache than success with SQL Azure and I'm looking for guidance on the latest methods and most reliable code for creating connections to SQL Azure. My understanding is that
If it matters to anyone, I currently use the (traditional?) approach of trying to connect to SQL Azure and then checking for an exception and trying the connection one more time. I hope to get replies that will help me eliminate that nonsense.
Please advise.
Upvotes: 0
Views: 367
Reputation: 36816
I have been using the traditional Retry logic that they recommend and have had no real problems. But I generally try more than once if a exception is raised, up to 10 times with a couple of seconds between each retry.
Upvotes: 1