用SqlConnectionStringBuilder修改连接超时时间

连接是通过参数传入,欲修改超时时间。

SqlConnectionStringBuilder scsb = new SqlConnectionStringBuilder(connStr);

 

scsb.ConnectTimeout=30;

 

 

转载于:https://www.cnblogs.com/runliuv/p/3307088.html

你可能感兴趣的:(用SqlConnectionStringBuilder修改连接超时时间)