Guest User

Untitled

a guest
Feb 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Connection conn= null;
  2. try
  3. {
  4. conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/gourav","root ","root");
  5. if (conn!=null)
  6. {
  7. System.out.println("Database connected");
  8. }
  9. }
  10. catch(Exception ex)
  11. {
  12. System.out.println(ex);
  13. }
  14. }
Add Comment
Please, Sign In to add comment