/*
  * @param column the first column is 1, the second is 2, etc.
  * @return the column label
  * @exception SQLException if a database access error occurs
  */
 public String getColumnLabel(int column) throws SQLException {
   Field field = getField(column);
   return field.getColumnLabel();
 }