JDBC 개발단계

기록하는 용도·2022년 9월 5일
0

JDBC 프로그래밍 개발 단계

1) SELECT

① JDBC Driver Loading (JDK 1.6 이상에서는 생략 가능)
② Connection(연결)
③ PreparedStatement(말하기) -> executeQuery();
④ ResultSet(결과반환)
⑤ close

2) INSERT, DELETE, UPDATE

① JDBC Driver Loading (JDK 1.6 이상에서는 생략 가능)
② Connection(연결)
③ PreparedStatement(말하기) -> executeUpdate();
④ close

0개의 댓글