document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.         int delete = JOptionPane.showConfirmDialog(
  2.                 rootPane,
  3.                 "Anda yakin ingin menghapus data ini?",
  4.                 "Confirmation",
  5.                 JOptionPane.YES_NO_OPTION
  6.         );
  7.        
  8.         if (delete == 0) {
  9.             try {
  10.                 String sql = "DELETE FROM tb_uangkas WHERE kd_pembayaran = \'"
  11.                         + Oktavian_kdPembayaranTextField.getText() + "\'";
  12.                 PreparedStatement pst = con.prepareStatement(sql);
  13.                 pst.executeUpdate();
  14.                 JOptionPane.showMessageDialog(rootPane, "Berhasil delete data.");
  15.                 kosongkan();
  16.                 tampil_table();
  17.             } catch(Exception e) {
  18.                 JOptionPane.showMessageDialog(rootPane, "Gagal delete data! " + e);
  19.             }
  20.         }
');