Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an sql column PROTOCOL of Number type .It is nullable and a constraint on the table PROTOCOL IN(1,2,3).I am able to set to null. How to get the value if its null? I can do rs.getInt() but I dont think it returns null?

if(protocol==0)
            {

               stmt.setNull(15, java.sql.Types.INTEGER);                

           }
            else{
            stmt.setInt(15, protocol);
            }
share|improve this question
duplicate of stackoverflow.com/questions/2920364/… – Hui Zheng Jan 25 at 11:09

2 Answers

up vote 5 down vote accepted

Use wasNull() method.

 Integer myValue = rs.getInt(15);
 if (rs.wasNull()) {
   myValue = null;
 }
share|improve this answer
If the value is null what will the myValue be here doesn't it throw exception? Integer myValue = rs.getInt(15); – constantlearner Jan 25 at 11:09
1  
(docs.oracle.com/javase/6/docs/api/java/sql/…) says that it will be 0. – SJuan76 Jan 25 at 11:11
I can also try...... Integer myValue = rs.getInt(15); if (rs==0) { myValue = null; } – constantlearner Jan 25 at 11:14
1  
(I suppose you meant if(myValue==0)) - You can then not distinguish between 0 and null, but according to your constraint that might do it. I would still prefer an explicit handling of the NULL value, though. – Andreas Jan 25 at 11:15
Yes you are right – constantlearner Jan 25 at 11:16

I can do rs.getInt() but I dont think it returns null?

Use ResultSet.wasNull() after getInt() to check if the last column read was NULL.

Or, use ResultSet.getObject() instead of getInt(), which returns null if the column is NULL.

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.