티스토리 뷰
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class JdbcProg {
public static void main(String[] args) {
// TODO Auto-generated method stub
String jdbc_url = "jdbc:oracle:thin:@localhost:1521:orcl";
Connection con;
Statement stmt;
int empno_s;
String name_s;
String job_s;
// 애트리뷰트
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
// ojdbc6.jar에 있는 클래스
} catch (ClassNotFoundException e) {
System.out.println("ClassNotFoundException " + e.getMessage());
}
try {
con = DriverManager.getConnection(jdbc_url, "kim", "1234");
// 지정한 url과 아이디/패스워드로 디비 접속
stmt = con.createStatement(); // 쿼리 준비
String sql = "select * from emp where job='manager'";
ResultSet rs = stmt.executeQuery(sql);
// 쿼리 -> 쿼리 결과를 받음, 기타 DML의 경우에는 영향을 받은 행의 개수나 0을 리턴
System.out.println("사원번호 " + "이름 " + "직무");
while (rs.next()) {
// 튜플 분할
empno_s = rs.getInt("empno");
name_s = rs.getString("name");
job_s = rs.getString("job");
System.out.println(empno_s + ", " + name_s + ", " + job_s);
}
rs.close();
stmt.close();
con.close();
} catch (SQLException e) {
System.out.println("SQLException " + e.getMessage());
//쿼리문에 문제가 있는 경우
}
}
}
'java,web study > 3주차 (7월 15일 ~21일)' 카테고리의 다른 글
ArrayListEx2 (0) | 2013.07.18 |
---|---|
ArrayListEx1 (0) | 2013.07.18 |
메모장 프로젝트 분석 결과 (0) | 2013.07.17 |
Migration (0) | 2013.07.17 |
멀티스레드 (0) | 2013.07.17 |