New Text Document
New Text Document
ON movie.id_pelanggan=pelanggan.id_pelanggan;
update
try {
st = cn.createStatement();
st.executeUpdate ("UPDATE siswa set"
+ "nis='" + inputNIS.getText() + "', "
+ "nama='" + inputNama.getText() + "', "
+ "jurusan='" + inputJurusan.getSelectedItem() + "', "
+ "jk='" + inputJK.getSelectedItem() + "',"
+ "alamat='" + inputAlamat.getText() + "'");
tampilData("");
JOptionPane.showMessageDialog(null, "Update Berhasil");
reset();
} catch (Exception e) {
e.printStackTrace();
}
hapus:
try{
int jawab;