Код: Выделить всё
package jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
class ConnectionDemo {
public static void main(String args[]) {
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl1","system","password");
System.out.println("Connection Established Successfully");
}catch(Exception e){
System.err.println(e);
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... oblems-con