* @param column the first column is 1, the second is 2, ...
* @return column name
* @exception SQLException thrown on failure
*/
public String getColumnName(int column) throws SQLException {
ResultColumnDescriptor cd = columnInfo[column - 1];
String s = cd.getName();
// database returns null when no column name to differentiate from empty name
return (s==null? "" : s);
}