Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1.   @Action
  2.   public void testAction6() {
  3.     //JOptionPane.showMessageDialog(Utils.getMainFrame(), "Zalozka2 - tlacidlo6");
  4.     try{
  5.       Connection Con = DriverManager.getConnection("jdbc:derby://localhost:1527/mydb","villy","villy");
  6.       Statement s = (Statement) Con.createStatement();
  7.  
  8.       String vloz = "INSERT INTO VILLY.Ludia (Meno, Priezvisko, Vek) VALUES ('Juraj','Deravy',22)";
  9.       s.executeUpdate(vloz);
  10.                
  11.     }catch(SQLException e){
  12.    
  13.     }
  14.      
  15.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement