Advertisement
Guest User

Untitled

a guest
May 24th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. try {
  2. Class.forName("com.mysql.jdbc.Driver");
  3. System.out.println("Connection sucessfull");
  4. }
  5. catch (ClassNotFoundException cnfe) {
  6. System.out.println("Connection failed " + cnfe);
  7. }
  8. String url = "jdbc:mysql://moderam.home.pl";
  9. try {
  10. DBConnection = DriverManager.getConnection(url, "13485949_okno", "hreniu230");
  11. System.out.println("Database Connected");
  12. }
  13. catch (SQLException se){
  14. System.out.println("No Database " + se);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement