/**
  * Fetch the next row of the result set, and if it exists format and display a banner and the row.
  *
  * @param out the place to write to
  * @param rs the ResultSet in use
  * @param conn the Connection against which the ResultSet was retrieved
  * @exception SQLException on JDBC access failure
  */
 public static void DisplayNextRow(PrintWriter out, ResultSet rs, Connection conn)
     throws SQLException {
   indent_DisplayNextRow(
       out,
       rs,
       conn,
       0,
       null,
       (rs == null) ? null : getColumnDisplayWidths(rs.getMetaData(), null, true));
 }