DELETE

You might also like

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

int z=Integer.parseInt(delTF.

getText());
DefaultTableModel dm=(DefaultTableModel) jTable1.getModel();
Object y;
y=dm.getValueAt(z-1,0);
jTable1.setModel(dm);
try{
Class.forName("java.sql.Driver");
Connection
comm=DriverManager.getConnection("jdbc:mysql://localhost:3306/practise?
zeroDateTimeBehavior=convertToNull","root","");
Statement smt=comm.createStatement();
String l="DELETE from crime where fir_no="+y+";";
JOptionPane.showConfirmDialog(null,"Do you really want to Delete?");
smt.executeUpdate(l);
smt.close();
comm.close();

}
catch(Exception e){JOptionPane.showMessageDialog(null, e);}
SEE_ALL_RECORDS_BUTTON.doClick();

You might also like