Guest User

Untitled

a guest
Oct 31st, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.sql.Connection; import java.sql.DriverManager;import java.sql.SQLException;
  2.  
  3. public Connection getConnection() {
  4.  
  5. String url = "jdbc:mysql://localhost:3306/Carro";
  6. try {
  7. return DriverManager.getConnection(url, "root", "root");
  8. } catch (SQLException e) {
  9. throw new RuntimeException(e);
  10. }
  11.  
  12.  
  13. }
Add Comment
Please, Sign In to add comment