반응형
자바에서 jdbc 를 사용하여 오라클에 접근하는 방법이다.
방법은 간단하다.
1. JDBC 드라이버를 로딩
- Class.forName(“orale.jdbc.driver.OracleDriver”)
2. Connection 객체를 생성
- conn = DriverManager.getConnection(url, id, pw)
3. PreparedStatement 객체 생성, 객체 생성시 SQL 저장
- PreparedStaement - SQL문을 데이터베이스에 보내기위한 객체
- pstmt = conn.preparedStatement(sql)
4. SQL 문장을 실행 후 결과를 리턴
- SQL 문장 실행 후, 변경된 row 수를 int type 으로 리턴
- pstmt.executeQuery()
5. close
- ResultSet close
- PreparedStatement close
- Connection close
전체 코드를 보면 다음과 같다.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
public class OracleTest {
public static void main(String[] args) {
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
String url ="jdbc:oracle:thin:@localhost:1521:orcl";
String id = "scott";
String pw = "tiger";
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection(url, id, pw);
String sql = "SELECT * FROM test";
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
while(rs.next()) {
System.out.println(rs.getString(1)+rs.getString(2)+rs.getString(3));
}
}catch(Exception e) {
e.printStackTrace();
}finally {
try {
if(rs!=null) {rs.close();}
}catch(Exception e) {
e.printStackTrace();
}
try {
if(pstmt!=null) {pstmt.close();}
}catch(Exception e) {
e.printStackTrace();
}
try {
if(conn!=null) {conn.close();}
}catch(Exception e) {
e.printStackTrace();
}
}
}
}
|
반응형
'IT > Java' 카테고리의 다른 글
String 내에서 특정 단어 위치 모두 찾기 (9) | 2022.12.28 |
---|---|
java.sql.SQLException: ORA-01000: 최대 열기 커서 수를 초과했습니다 (11) | 2022.12.25 |
[Oracle] java.sql.SQLException: ORA-00911: 문자가 부적합합니다. (12) | 2022.12.23 |
자바 레코드(Record) (14) | 2022.12.22 |
식별자 명명 규칙 (15) | 2022.12.19 |
댓글