Advertisement
Guest User

Untitled

a guest
Nov 4th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // Vem do pacote conexao
  2. package conexao;
  3.  
  4. // Importando os seguintes drivers de BD
  5. import java.sql.Connection;
  6. import java.sql.DriverManager;
  7.  
  8. // Classe publica por conta que outras classes vão manipular ela
  9. public class connectionFactory {
  10.  
  11. // Metodo conectar utiliza o throws exception
  12. public Connection conectar() throws Exception{
  13. // Retorna a string de conexao
  14. return DriverManager.getConnection
  15. ("jdbc:oracle:thin:@oracle.fiap.com.br:1521:ORCL",
  16. "rm75447","080697");
  17.  
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement