Advertisement
Guest User

Untitled

a guest
Jan 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public void connect(boolean b) throws ClassNotFoundException{
  2.  
  3. if(!b)return;
  4.  
  5. Class.forName("com.mysql.jdbc.Driver");
  6.  
  7. try {
  8. connection = DriverManager.getConnection("jdbc:mysql://144.76.175.222:3306/test","root","bpaGm5L3TMDvb8");
  9. System.out.println("[DATABASE] Connecte");
  10. } catch (SQLException e) {
  11. e.printStackTrace();
  12. System.out.println("[DATABASE] Problème lors de la connection a la base de données");
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement