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

I want to know if there is a way to get a column name based on the index from a resultSet.

I know that if you want to get index based on the columnName, you can do that by using

int index = resultSet.findColumn(columnName);

But I need the other way around, something like :

String column = resultSet.findColumnName(index);

Is it possible?

share|improve this question

6 Answers

up vote 4 down vote accepted

I think you need to look at ResultSet.getMetaData() which returns the meta-data associated with a ResultSet.

You can then iterate over the columns (use getColumnCount() to find out how many there are) to find the column with the given name, checking with getColumnName(). Don't forget that column indexes are 1-based, rather than 0-based. Something like:

ResultSetMetaData metaData = resultSet.getMetaData();

int count = metaData.getColumnCount();
for (int i = 1; i <= count; i++)
{
    if (metaData.getColumnName(i).equals(desiredColumnName))
    {
        // Whatever you want to do here.
    }
}

If you need to do this for a lot of names, you may want to build a HashMap<String, Integer> to map them easily.

share|improve this answer
1  
This should probably be i <= count, since it's 1-based. – Bruno Jun 20 '11 at 10:23
1  
@Bruno: Fixed, thanks. Darned 1-based indexes :) – Jon Skeet Jun 20 '11 at 10:25

Of course - use java.sql.ResultSetMetaData.

ResultSetMetaData meta = resultSet.getMetaData();
String column = meta.getColumnName(index);
share|improve this answer
resultSet.getMetaData().getColumnName(index);
share|improve this answer

With standard JDBC, you can get the result set's metadata:

ResultSetMetaData metadata = resultSet.getMetaData() 

This object can then be queried for the column name (by index):

String columnFiveName = metadata.getColumnName(5)
share|improve this answer

How about ResultSetMetaData 'sgetColumnName() ?


For Example:

ResultSetMetaData metaData = resultSet.getMetaData()
metaData.getColumnName(1) ;

See Also

share|improve this answer

You should be able to do this using ResultSetMetaData:

ResultSetMetaData rsmd = resultSet.getMetaData();
String column = rsmd.getColumnName(index);
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.