Advertisement
Guest User

Untitled

a guest
Jul 4th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import java.sql.Connection;
  2. import java.sql.DriverManager;
  3. import java.sql.SQLException;
  4.  
  5.  
  6.  
  7. public class ConexaoMysql{
  8.  
  9.  
  10. public Connection getConnection() {
  11. try {
  12. return DriverManager.getConnection("jdbc:mysql://191.241.33.134:3306/loja", "root", "");
  13. } catch (SQLException e) {
  14. throw new RuntimeException(e);
  15. }
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement