Advertisement
asril99

Delete Data

Dec 8th, 2018
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. try {
  2. String sql ="DELETE from tbl_anggota WHERE no='"+txt_no.getText()+"'";
  3. java.sql.Connection conn=(Connection)config.configDB();
  4. java.sql.PreparedStatement pst=conn.prepareStatement(sql);
  5. pst.execute();
  6. JOptionPane.showMessageDialog(this, "berhasil di hapus");
  7. load_table();
  8. kosong();
  9. } catch (Exception e) {
  10. JOptionPane.showMessageDialog(this, e.getMessage());
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement