CODEDRAGON ㆍDevelopment/Java
Statement 인터페이스
Statement 인터페이스의 객체는 Connection인터페이스의 createStatement()메소드를 이용하여 생성되며, 데이터베이스에 SQL문을 보내기 위한 준비작업과 실제 SQL을 실행하여 결과 값을 반환하는 기능을 제공합니다. 즉 SQL문을 전송하고 실행할 수 있는 객체를 생성합니다.
삽입, 수정, 삭제, 검색을 처리하는 DML문을 사용할 때 이 인터페이스를 사용합니다.
Interface Statement
https://docs.oracle.com/javase/8/docs/api/java/sql/Statement.html
상속 관계도
서브 인터페이스로 내려갈 수록 향상된 기능을 제공합니다.
Interface CallableStatement
https://docs.oracle.com/javase/8/docs/api/java/sql/CallableStatement.html
Interface PreparedStatement
https://docs.oracle.com/javase/8/docs/api/java/sql/PreparedStatement.html
'Development > Java' 카테고리의 다른 글
PreparedStatement 동작 도식도, 오라클에서 SQL문 수행시 SGA 영역의 메모리 관리 (0) | 2017.07.24 |
---|---|
Statement의 주요 메서드 (0) | 2017.07.24 |
DriverManager 클래스의 주요 메소드 (0) | 2017.07.24 |
DriverManager, JDBC 드라이버를 로딩 형식 (0) | 2017.07.24 |
Connection인터페이스의 주요 메서드 (0) | 2017.07.24 |