Guest User

Untitled

a guest
Jan 16th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class ConnectionFactory {
  2.  
  3. public Connection getConnection() {
  4.  
  5. try {
  6.  
  7. return DriverManager.getConnection("jdbc:mysql://127.0.0.1/bdvendas", "usuario", "123");
  8.  
  9. } catch (Exception erro) {
  10. throw new RuntimeException(erro);
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment