Example #1
0
  public static void deleteGuest() throws IOException, Exception {
    System.out.println("Enter the guest ID: ");
    String id = bufferRead.readLine();

    // call delete guest
    Guest.delete(conn, id);
  }