Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, Naive question.

I want to have each sql statement run "thread safe". I want to use connection pooling (ie Apache DBCP). I just can't find anything the explicitly says "Yes, it's thread".

I read this: "Note: SQLServerConnection is not thread safe. However, multiple statements that are created from a single connection can be processed simultaneously in concurrent threads." and it spooked me.

Can I get a yes/no, and ideally an example please?

share|improve this question
Thread safety can only ba an issue when you use the same connection concurrently, not if you have a thread check out the connection, use it, check it back in and then a second thread checks out the (same) connection uses it and checks it back in etc. – Mark Rotteveel Nov 16 '12 at 9:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.