Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

database db = new database();

c = db.OpenConnect();
s = c.createStatement();
r = s.executeQuery(cari);
//s.executeUpdate(sql);
if(r.next()){
kd=r.getString("iduser");
if(txtid.getText().trim().equals("")){
JOptionPane.showMessageDialog(this, "Harap Isi No Id User");
}else if(txtid.getText().equals(kd)){
JOptionPane.showMessageDialog(null, "Maaf ID User "+txtid.getText(
)+ "Sudah Ada");
}else{
s.executeUpdate(sql);
s.close();
}

You might also like