vrejaandrei

Razvan 3

Jan 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. btBtnAdauga.addActionListener(new ActionListener() {
  2.         public void actionPerformed(ActionEvent e) {
  3.             connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/student", "user", "pass");
  4.             Statement stmt = connection.createStatement();
  5.             stmt.executeUpdate(
  6.             "INSERT INTO colocviu ('nume', 'prenume', 'nationalitate', 'tara') VALUES " +
  7.             "(" + tf0 + ", " + tf1 + ", " + bG.getSelection().getActionCommand() + ", " + dataComboTara.getSelectedItem().toString() + ")");
  8.         }
  9.     });
Add Comment
Please, Sign In to add comment