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개의 댓글

Powered by GraphCDN, the GraphQL CDN