Advertisement
Guest User

Untitled

a guest
Jun 1st, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public boolean openConnection() {
  2. try {
  3. con = DriverManager.getConnection("jdbc:mysql://" + host + "/" + database + "?autoReconnect=true&useSSL=true",
  4. username, password);
  5. } catch (SQLException e) {
  6. System.err.println("SQLException: " + e.getMessage());
  7. System.err.println("SQLState: " + e.getSQLState());
  8. System.err.println("VendorError: " + e.getErrorCode());
  9. }
  10. return true;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement