| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- jobtoy
- 운정
- 설정
- html5
- 코딩
- 설치
- 예제
- Android
- librecad
- oracle
- 리브레캐드
- Spring Security
- 강좌
- mysql
- 안드로이드
- jsp
- s4a
- 아두이노
- MSSQL
- 라즈베리파이
- Unity
- 오라클
- 유니티
- 시작하기
- 잡토이
- tomcat
- 톰캣
- 스크래치
- 파주
- 잡토이 메이킹 코딩 학원
- Today
- Total
목록in (4)
랩제이
[mybatis] IN qeury 사용하기 * java List cat_mall_id_list = new ArrayList(); // mall id cat_mall_id_list.add(temp[i]); LibroCatalogue libroCatalogue = new LibroCatalogue(); if(cat_mall_id_list.size()!=0) { libroCatalogue.setCat_mall_id_list(cat_mall_id_list); } libroCatalogueService.getAll(libroCatalogue); * xml (mybatis) ... AND CAT_MALL_ID IN #{item} * xml (ibatis) a.DT_CODE IN #dt_code_in[]# [myba..
[ibatis] in 조건 생성하기 * ctrl List option_state_no = new ArrayList(); option_state_no.add("1"); option_state_no.add("2"); condition.put("option_state_no", option_state_no); List goodsList = goodsService.getList(condition); * svc public List getList(Map condition) throws Exception { return goodsDao.getList(condition); } * dao @SuppressWarnings("unchecked") @Override public List getList(Map condition..
[ibatis] in 조건으로 delete 하기 1. jsp : ,,, idx 해당하는 값을 담는다. 2. java control // parameter 받기 String chkNum = ServletRequestUtils.getStringParameter(request, "chkNum", "0"); //삭제 옵션코드 List에 담기 String[] chkNumArray; chkNumArray = chkNum.split(","); List delOptionCode = new ArrayList(chkNumArray.length); for(int i=0; i
[ibatis] delete sql in 사용 prepend : 쿼리로 쓰여질 문자. property : 파라미터명. open : 시작 문자. close : 종료 문자. conjunction : 구분자. ====================================================================================== List list = new ArrayList(); list.add("A"); list.add("B"); list.add("C"); HashMap map = new HashMap(); map.put("idList", list); =====================================================================..