Advertisement
Guest User

Untitled

a guest
Oct 8th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private static final BasicDataSource dataSource = new BasicDataSource();
  2.  
  3. static {
  4. dataSource.setDriverClassName("com.mysql.jdbc.Driver");
  5. dataSource.setUrl("jdbc:mysql://111.111.111.111/db");
  6. dataSource.setUsername("server");
  7. dataSource.setPassword("serverpass");
  8. }
  9.  
  10. public Connection getConnection() throws SQLException {
  11. return dataSource.getConnection();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement