Programming/JAVA
java jdbc oracle select 사용방법
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 Conn..
2019. 11. 17. 18:39