Advertisement
Guest User

Untitled

a guest
Jun 16th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. private static Connection getConnection() {
  2. try {
  3. String dbUrl = "jdbc:postgresql://ec2-54-83-27-147.compute-1.amazonaws.com:5432/d1o8bcicho5jj?user=usuario&password=senha&sslmode=require";
  4. return DriverManager.getConnection(dbUrl);
  5. } catch (SQLException e) {
  6. e.printStackTrace();
  7. }
  8. return null;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement