Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private static final String url = "jdbc:mysql://127.0.0.1:3306/mybd?autoReconnect=true&useSSL=false";
  2. private static final String user = "root";
  3. private static final String password = "welcome";
  4.  
  5. private static Connection con;
  6.  
  7. public static void connecttodb() {
  8.  
  9. // opening database connection to MySQL server
  10. con = DriverManager.getConnection(url, user, password);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement