SqlConnectionStringBuilder.MultipleActiveResultSets Property
When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection.
For more information, see Multiple Active Result Sets (MARS).
Namespace: System.Data.SqlClient
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.BooleanThe value of the MultipleActiveResultSets property, or false if none has been supplied.
The following example explicitly disables the Multiple Active Result Sets feature.
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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.