Advertisement
Guest User

Untitled

a guest
Oct 31st, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package Connection;
  2.  
  3. import java.sql.Connection;
  4. import java.sql.DriverManager;
  5.  
  6. public class Conexao {
  7. public Connection conectar() throws Exception{
  8. return DriverManager.getConnection
  9. ("jdbc:oracle:thin:@oracle.fiap.com.br:1521:ORCL",
  10. "RM74835","201197");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement