1. Connection Interface : 데이터베이스에 접속하기 위한 인터페이스. Connection 객체를 얻기 위해서는 DriverManager 클래스의 getConnection()를 호출해야 한다. 예) Class.forName("oralce.jdbc.driver.OracleDriver"); // 데이터베이스 드라이버를 메모리에 로딩String url="jdbc:oracle:thin:@localhost:1521:orcl"; //데이터베이스의 위치 String id="scott"; String pw="tiger"; //유저 아이디와 비밀번호 Connection conn=DriverManager.getConnection(url,id,pw); 2. Statement Interface : SQL문을 ..