Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. try{
  2. conn=DriverManager.getConnection("jdbc:mysql://localhost/muzica","root","parola123");
  3. stmt=conn.createStatement();
  4. stmt.execute("truncate melodii;");
  5.  
  6. }catch(SQLException sqle){
  7. sqle.printStackTrace();
  8. }
  9.  
  10.  
  11. for(String a:melodii.keySet()){
  12. try{
  13. stmt.execute("insert into melodii values (null,'"+a+"','"+melodii.get(a)+"');");
  14. }catch(SQLException sqle1){
  15. sqle1.printStackTrace();
  16. }
  17. System.out.println("Numele melodiei este: "+a);
  18. System.out.println("Path-ul melodiei este: "+melodii.get(a));
  19. System.out.println("---------------------------------------------");
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement