Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.sql.*;
  2.  
  3. public class ConnectionMySQL {
  4.  
  5. public static void main(String[] args)
  6. {
  7.  
  8. try {
  9. Connection conn=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/?user=root", "root", "dedee");
  10. System.out.println("connessione avvenuta.");
  11. }catch(Exception e)
  12. {
  13. System.err.println(e);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement