My connection string is like the following. It shows 'Timeout Exception' first time I run the application. But, for the subsequent run, it's ok. I think, it might take some time to attach the DB to the SQLExpress Server. Is there anyway to increase Timeout period? Thanks

I am using SQLServer 2005 Express and VS 2008 and .Net 3.5.

<add name="dotnetConnectionString" connectionString="Server=.\SQLExpress;AttachDbFilename=|DataDirectory|dotnet.mdf; Database=dotnet;Trusted_Connection=Yes;" providerName="System.Data.SqlClient"/>  
link|improve this question

75% accept rate
Is this attaching of a database something you should be doing in your application's setup? Or do you need to attach the database every time your app runs? Seems like a lot of hard work for an app to cope with every time it starts up! – fritterfatboy Jul 15 '10 at 14:13
This is not for production. I am just doing school project and, when I tried to run my project in another PC for the 1st time, this problem occurs. – TTCG Jul 15 '10 at 14:21
feedback

1 Answer

up vote 0 down vote accepted

Use Connection Timeout in your connection string and specify the number of seconds. Try 60 at first.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.