首页 > 代码库 > Time Out 访问数据库超时处理 .NET
Time Out 访问数据库超时处理 .NET
1 using System.Reflection; 2 3 using System.Data.SqlClient; 4 5 6 7 8 9 TransactionSelectTableAdapter adapter = new TransactionSelectTableAdapter();10 11 Type adapterType = adapter.GetType();12 13 PropertyInfo commandProperty = adapterType.GetProperty("CommandCollection", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);14 15 SqlCommand[] commandList = (SqlCommand[])commandProperty.GetValue(adapter, null);16 17 commandList[0].CommandTimeout = 3000;
也有同事之间改某个文件的属性,相对感觉欠优雅。
个人喜欢另一个同事教我的方法,如上。
对了,对于那些同事们教我的事,
感谢我的同事们,God bless you!!!
仅供参考。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。