Advertisement
Guest User

Untitled

a guest
Oct 26th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. try{
  2. Class.forName("com.mysql.jdbc.Driver");
  3. Connection c = DriverManager.getConnection(
  4. "jdbc:mysql://localhost/ventas2018","root","");
  5.  
  6. Statement s = c.createStatement();
  7. String sql = "delete from producto where codigo = "
  8. + jTextField1.getText();
  9. s.execute(sql);
  10.  
  11. jButton1ActionPerformed(null);
  12.  
  13. javax.swing.JOptionPane.showMessageDialog(null, sql);
  14. } catch(Exception e){
  15. e.printStackTrace();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement