Get Oracle JDBC Driver:
http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html
Code Snippet:
1 2 3 4 5 |
Class.forName("oracle.jdbc.driver.OracleDriver"); Connection connection = null; connection = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:empdb", "username","password"); connection.close(); |