Advertisement
Guest User

Untitled

a guest
Mar 8th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public static Connection getConnection() throws Exception {
  2. if(connection == null || connection.isClosed()) {
  3. Class.forName("com.mysql.jdbc.Driver");
  4. connection = (Connection) DriverManager.getConnection(
  5. "jdbc:mysql://" + host + ":" + port + "/" + database, username, password);
  6. }
  7. return connection;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement