Guest User

Untitled

a guest
Sep 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public static Connection getConnection() throws ClassNotFoundException, SQLException {
  2.  
  3. Class.forName("oracle.jdbc.driver.OracleDriver");
  4. Connection con=DriverManager.getConnection(
  5. "jdbc:oracle:thin:@host:port:sid","username","password");
  6.  
  7. return con;
  8. }
Add Comment
Please, Sign In to add comment