I can’t seem to find any documentation regarding thread safety…
In particular – is the Database class (and subclasses) thread safe
How would I find this out for myself? Are there references to thread safety for classes on the MSDN site?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, instances of the
Databaseclass are thread-safe. However, objects created by it (such asSqlDataReader) are not.