/**
  * Display the current row of the result set along with a banner. Assume the result set is on a
  * 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 DisplayCurrentRow(PrintWriter out, ResultSet rs, Connection conn)
     throws SQLException {
   indent_DisplayCurrentRow(
       out,
       rs,
       conn,
       0,
       null,
       (rs == null) ? null : getColumnDisplayWidths(rs.getMetaData(), null, true));
 }