ADO.NET DataTable/DataRow Thread Safety

Posted by Allen E. Scharfenberg on Stack Overflow See other posts from Stack Overflow or by Allen E. Scharfenberg
Published on 2010-05-19T20:22:02Z Indexed on 2010/05/27 18:11 UTC
Read the original article Hit count: 228

Filed under:
|

Introduction

A user reported to me this morning that he was having an issue with inconsistent results (namely, column values sometimes coming out null when they should not be) of some parallel execution code that we provide as part of an internal framework. This code has worked fine in the past and has not been tampered with lately, but it got me to thinking about the following snippet:

Code Sample

                lock (ResultTable)
                {
                    newRow = ResultTable.NewRow();
                }

                newRow["Key"] = currentKey;
                foreach (KeyValuePair<string, object> output in outputs)
                {
                    object resultValue = output.Value;
                    newRow[output.Name] = resultValue != null ? resultValue : DBNull.Value;
                }

                lock (ResultTable)
                {
                    ResultTable.Rows.Add(newRow);
                }

(No guarantees that that compiles, hand-edited to mask proprietery information.)

Explanation

We have this cascading type of locking code other places in our system, and it works fine, but this is the first instance of cascading locking code that I have come across that interacts with ADO .NET. As we all know, members of framework objects are usually not thread safe (which is the case in this situation), but the cascading locking should ensure that we are not reading and writing to ResultTable.Rows concurrently. We are safe, right?

Hypothesis

Well, the cascading lock code does not ensure that we are not reading from or writing to ResultTable.Rows at the same time that we are assigning values to columns in the new row. What if ADO .NET uses some kind of buffer for assigning column values that is not thread safe--even when different object types are involved (DataTable vs. DataRow)?

Has anyone run into anything like this before? I thought I would ask here at StackOverflow before beating my head against this for hours on end :)

Conclusion

Well, the consensus appears to be that changing the cascading lock to a full lock has resolved the issue. That is not the result that I expected, but the full lock version has not produced the issue after many, many, many tests.

The lesson: be wary of cascading locks used on APIs that you do not control. Who knows what may be going on under the covers!

© Stack Overflow or respective owner

Related posts about c#

Related posts about ADO.NET