(User user)
| 62 | |
| 63 | // 매개변수로 받은 사용자 정보로 user_info테이블을 update하는 메서드 |
| 64 | public int updateUser(User user) throws Exception { |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | public int deleteUser(String id) throws Exception { |
| 69 | Connection conn = ds.getConnection(); |
nothing calls this directly
no outgoing calls
no test coverage detected