vote up 1 vote down star

Is the standard MySQL JDBC driver thread-safe? Specifically I want to use a single connection across all threads, but each statement will only be used in a single thread. Are there certain scenarios that are safe and others that aren't? What's your experience here?

flag

75% accept rate
1  
"..While you can share a connection across threads (especially if each thread has its own Statement), it's usually not a good idea. The JDBC API is not really designed to be used in a thread-safe way, and most JDBC connections (including MySQL's) can only process a single query at a time.." forums.mysql.com/read.php?39,171022,171195#msg-17… – Tim Jul 30 at 22:19
1  
@Tim, Yes, I saw the post earlier. It doesn't go into details about any possible problems though, so I felt that it would be interesting to hear about other peoples experiences. Also, I felt that it's a valid question that belonged in the stack overflow question database. Feel free to post that link as an answer. :) – Emil H Jul 30 at 22:23
Consider using a connection pool instead. – Dana the Sane Jul 30 at 22:32

3 Answers

vote up 1 vote down check

Transactions are started / committed per connection. Unless you're doing some very specific stuff (I can't really think of an example where that would be justified to be honest), you're better off with a connection pool and connection per thread.

link|flag
vote up 2 vote down

I think the JDBC spec explains it perfectly.

link|flag
vote up 0 vote down

If autocommit = 1, then it is very feasible to have multiple threads share the same connection, provided the access to the connection is synchronized. If autocommit = 0, you will have to control access to the connection via some sort of mutex until the commit happens.

Unless you absolutely are limited in the amount of connections your application can have, a connection pool may be a more viable alternative.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.