* 앞의 내용 정리 connection class.forname() 오라클 드라이버 등록(라이브러리 추가 후 ) DriverMager.getConnection(url, user, password) ->properties 파일로 따로 뺄때는 (user.prop) preparedStatement 설정 sql문 생성 pstmt = conn.prepareStatement(query); pstmt.setxxx(1, ____); sql문 실행(세팅한 쿼리문 실행시키는 코드) pstmt.executeQuery() = select / 반환값 resultset pstmt.executeUpdate() = iud / int값(삽입된, 수정된, 삭제된 행의 개수) : 컬럼에있는 정보들을 각각의 데이터 타입으로 꺼내서 자바의 ..