Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 김영한
- pointcut
- SpringBoot
- spring
- jpa
- QueryDSL
- http
- JDBC
- 알고리즘
- JPQL
- 스프링 핵심 원리
- kotlin
- AOP
- Thymeleaf
- Greedy
- springdatajpa
- Servlet
- 스프링 핵심 기능
- Exception
- 인프런
- 그리디
- java
- Android
- 스프링
- 자바
- db
- Spring Boot
- transaction
- Proxy
- 백준
Archives
- Today
- Total
목록삭제 (1)
개발자되기 프로젝트
JDBC 개발 - 수정, 삭제
수정과 삭제는 앞서 살펴본 등록과 비슷하다. 데이터를 변경하는 쿼리를 executeUpdate()를 통해 실행하면 된다. 두 메서드는 쿼리만 다르고 전체 흐름을 동일하다. public void update(String memberId, int money) throws SQLException { String sql = "update member set money=? where member_id=?"; Connection con = null; PreparedStatement pstmt = null; try { con = getConnection(); pstmt = con.prepareStatement(sql); pstmt.setInt(1, money); //첫 번째 파라미터 바인딩 pstmt.setStrin..
인프런/[인프런] 스프링 DB 1편 - 데이터 접근 핵심 원리
2022. 5. 28. 23:19