Advertisement
Guest User

Untitled

a guest
Mar 5th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private Connection connectToDB() throws ClassNotFoundException,SQLException
  2. {
  3. Connection connection = null;
  4.  
  5. Class.forName("com.mysql.jdbc.Driver");
  6.  
  7. connection = DriverManager.getConnection("jdbc:mysql://xxx.freemysqlhosting.net:3306/user","user", "password");
  8.  
  9. return connection;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement