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

Is it possible to check a ResultSet to see if it contains a column label for the current row. I would assume that it is backed by some kind of Map, so providing an rs.contains("label") method can't be that expensive, but I can't find one in the javadoc.

The current way I'm testing for the presence of a label is:

BigDecimal bid;
    try {
        bid = rs.getBigDecimal("bid");
    }
    catch(final SQLException e) {
        bid = null;
    }

But this seems untidy to me, and will be unreadable if you want to test multiple rows in this manner.

share|improve this question
See related post: stackoverflow.com/questions/3942583/… – Buhake Sindi Nov 10 '10 at 9:31

3 Answers

You can use metadata that you can obtain from resultset. Use rs.getMetaData(), and then on metadata there are getColumnName() and getColumnLabel() methods.

share|improve this answer
Perfect. Thanks – Richard Nov 10 '10 at 9:31

You can use ResultSetMetaData (see my related post here). This is what I would prefer you to use. What you do is retrieve the ResultSetMetaData from the ResultSet, iterate through it and see if ResultSetMetaData.getColumnName(int index) returns the column name you've been looking for.

Alternatively, you can use ResultSet.findColumn() to find a column within a ResultSet.

share|improve this answer

Why? Your query will already determine what columns are returned. But the ResultSetMetadata tells you what columns are present.

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.