Advertisement
Guest User

Untitled

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