Skip to content

Instantly share code, notes, and snippets.

@lubarinobr
Created March 2, 2019 02:15
Show Gist options
  • Save lubarinobr/3aec5365fbd1b42d870a806b443f2908 to your computer and use it in GitHub Desktop.
Save lubarinobr/3aec5365fbd1b42d870a806b443f2908 to your computer and use it in GitHub Desktop.
public Connection connect() throws ClassNotFoundException, SQLException {
Class.forName("com.mysql.jdbc.Driver");
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","username", "password");
return connection;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment