摘要:
MultipleActiveResultSets可以使数据库连接复用。这样就不怕数据库的连接资源被耗尽了。使用方法很简单,只需要把它加到数据的连接字符串中即可。例如:server=(local);Integrated Security = true;database=AdventureWorks;MultipleActiveResultSets=true;测试用例: using System; using System.Threading; using System.Data.SqlClient; using System.Configuration; namespace ConsoleApp 阅读全文