web.configの接続文字列にCommandTimeoutを追加するにはどうすればよいですか?web.configの接続文字列にCommandTimeoutを追加する方法
私が試した:
<add name="ConnectionString" connectionString="Data Source=;Initial Catalog=;Persist Security Info=True;User ID=sa;[email protected];Connect Timeout=200" providerName="System.Data.SqlClient"/>
</connectionStrings>
と、この:
<add name="MyProject.ConnectionString"
connectionString="Data Source=127.0.0.1;Initial Catalog=MyDB;Persist Security Info=True;CommandTimeout=60;User ID=sa;Password=saPassw0rd"
providerName="System.Data.SqlClient" />
を、それは私のための仕事をdidntの。
おかげ