반응형
Class.forName(“com.mysql.jdbc.Driver”); // JDBC 드라이버의 클래스 등록
Connection conn;
Statement stmt = conn.createStatement();
select문
ResultSet executeQuery(String sql) ; // 결과로 ResultSet 객체를 반환
example) ResultSet rs = stmt.executeQuery("select name, id, age from tbl");
insert, update, delete 문
int executeUpdate(String sql); // 결과로 오류여부를 반환
생성객체 닫기
rs.close(); // ResultSet을 닫는 메소드
stmt.close(); // Statement을 닫는 메소드
conn.close(); // Connection을 닫는 메소드
반응형
'Devlopment > Web' 카테고리의 다른 글
Math 객체 (0) | 2008.07.08 |
---|---|
Date 객체 (0) | 2008.07.08 |
문자열 메소드 & 정규표현식 메소드 (0) | 2008.07.08 |
li 메뉴 (0) | 2008.07.08 |
Images Masking, 메뉴 (0) | 2008.07.04 |
쿠키(Cookie) & 세션(Session) (0) | 2008.06.29 |
Application 내장 객체 (0) | 2008.06.29 |
Forward & Redirect & Include (0) | 2008.06.29 |
파라미터 값 받기 & 한글 처리 (0) | 2008.06.29 |
JSP Page Directive (0) | 2008.06.29 |