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

Just curious, does a MySql connection with Broken Pipe or EOFException = null?

I'm asking cause it might be causing a logic error in my code. Or is there a way to simulate the broken pipe or eof faster? Currently I'm doing database pooling and I do a check where is the conn !=null, counter++ to keep track of the number of connections in use, but if the above is true, I will do a counter++ when the connection is not valid because it does not actually return a null but an object that is not valid. Hope this makes sense.

share|improve this question

2 Answers

up vote 0 down vote accepted

Regardless of whether the connection is still valid or not, the no reference to the connection instance will be == to null, unless it is actually null. This is entirely unrelated to whether the connection instance is in a usable state.

A common method to determine the latter is to send a simple query through the connection, after it has been dormant for a while. Depending on your database, it could be as simple as „SELECT 1“

share|improve this answer
Yes that was the work around I did and just used 2 checks instead. If the connection if valid and not null. – Maurice Jul 8 '11 at 8:14

There is not really enough context to answer your question. (Hint: post the actual code!!)

However, in general an unexpected null will result in a NullPointerException, and not some subclass of IOException.

share|improve this answer

Your Answer

 
discard

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

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