SqlConnectionStringBuilder.MultipleActiveResultSets Property
.NET Framework 4
Gets or sets a Boolean value that indicates whether multiple active result sets can be associated with the associated connection.
Assembly: System.Data (in System.Data.dll)
The following example explicitly disables the Multiple Active Result Sets feature that is available when programming against SQL Server 2005.
using System.Data.SqlClient; class Program { static void Main() { SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder(); builder.DataSource = "(local)"; builder.IntegratedSecurity = true; builder.InitialCatalog = "AdventureWorks"; // The connection does not allow multiple active result sets // by default, so this line of code explicitly // enables this feature. Note that this feature is // only available when programming against SQL Server 2005 // or later. builder.MultipleActiveResultSets = true; Console.WriteLine(builder.ConnectionString); Console.WriteLine(); Console.WriteLine("Press Enter to continue."); Console.ReadLine(); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.