Advertisement
RyanRain

delete

Dec 30th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. // fungsi hapus data
  2.         try {
  3.             String sql ="delete from mhs where nim='"+txtnim.getText()+"'";
  4.             java.sql.Connection conn=(Connection)Config.configDB();
  5.             java.sql.PreparedStatement pst=conn.prepareStatement(sql);
  6.             pst.execute();
  7.             JOptionPane.showMessageDialog(this, "berhasil di hapus");
  8.         } catch (Exception e) {
  9.             JOptionPane.showMessageDialog(this, e.getMessage());
  10.         }
  11.         load_table();
  12.         kosong();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement