Guest User

Untitled

a guest
Nov 16th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class Conexión {
  2.  
  3. public Connection oracle(){
  4. try{
  5. String url = "jdbc:oracle:thin:@localhost:1521:XE";
  6. String usuario = "system";
  7. String password = "holajolarola6";
  8. Class.forName("oracle.jdbc.driver.OracleDriver");
  9. return DriverManager.getConnection(url, usuario, password);
  10. }
  11. catch(Exception e){
  12. //return null;
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment