SMALL
데이터베이스에 날짜를 저장하기 위해 date객체를 변환해야 할 때가 있다.
java.util.Date utilDate = new java.util.Date(); //현재 날짜(자바 객체)
java.sql.Date sqlDate = new java.sqlDate(utilDate.getTime(); //sql date객체로 변환
SMALL
'기록 > Web' 카테고리의 다른 글
[MyBatis] sql 쿼리 결과 저장 (0) | 2020.06.14 |
---|---|
[Mybatis] 문자열 일부만 포함하는 검색 기능 (0) | 2020.06.13 |
[Spring] Neither BindingResult nor plain target object for bean name 'commandname' available as request attribute (0) | 2020.06.12 |
[JDBC 오류] Cause: org.springframework.jdbc.CannotGetJdbcConnectionException (0) | 2020.06.11 |
[Spring MVC] 컨트롤러에서 다른 컨트롤러 호출하여 뷰로 이동 (0) | 2020.05.15 |