MultipleActiveResultSets=True or multiple connections?
Asked Answered
L

3

106

I have some C# in which I create a reader on a connection (ExecuteReader), then for every row in that reader, perform another command (with ExecuteNonQuery). In this case is it better that I use MultipleActiveResultSets=True on my connection or use multiple connections?

Lugansk answered 4/2, 2009 at 11:5 Comment(0)
M
122

Multiple Active Result Sets (MARS) was added specifically for this type of operation so that you don't have to have two connections open at the same time to be able to read from a SqlDataReader AND execute additional batches.

MARS is compatible with SQL Server 2005 and above. To quote from MSDN docs:

Before the introduction of Multiple Active Result Sets (MARS), developers had to use either multiple connections or server-side cursors to solve certain scenarios.

For more info see:

MSDN Library - MARS Overview

Worked example reading and updating data:

MSDN Library - Manipulating Data (MARS) scroll down to 'Reading and Updating Data with MARS'

Museology answered 4/2, 2009 at 11:50 Comment(1)
By setting the Multiple Active Result Sets (MARS) to true, will improve the overall performance of retrieving data from the database.Revanche
T
25

This is as far as I know the reason MARS was added, so yeah I think you should use it.

Touchstone answered 4/2, 2009 at 11:12 Comment(0)
E
-1

Best way to test this is to fire SQLServer Profiler, and see what really happens on the server side.

My guess is that it will not be better since you are using ExecuteNonQuery(). So, in fact, you don't work with multiple results.

Eulogist answered 4/2, 2009 at 11:15 Comment(1)
That's what I thought when I wrote the code, but if I don't have MultipleActiveResultSets=True then I still get an "There is already an open DataReader associated with this Command which must be closed first." exception on ExecuteNonQuery.Lugansk

© 2022 - 2024 — McMap. All rights reserved.