ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
			mylist = (ArrayList)(dhtmlxService.selectListForGrid("sqlid1234", hm)).get("data");
			mylist.get(0).put("CAR_NM","new car name");
			log.debug(Arrays.asList(mylist)); // method 1
			mapReturn.put("clientlist"  , mylist);

alt + space + 방향키

모니터 끝에서 최대화 선택 

(https://gbworld.tistory.com/1380)


svn lock

카테고리 없음 2020. 5. 25. 11:37



Window > Prefernces > General > Appearance > Colors and Fonts 
Debug > Console font

 

help.eclipse.org/2020-03/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-consoleAppearance.htm)


1. svn

2. svn connector (svn kit 1.8.14)

https://recipes4dev.tistory.com/155


DECLARE
TYPE array_of_numbers IS varray(100) OF varchar2(20);
		
 cities_ids array_of_numbers;
BEGIN
  DBMS_OUTPUT.PUT_LINE('Begin...');
  WITH tab1  AS (
            SELECT  'Stockholm' AS id FROM DUAL
  UNION ALL SELECT  'Tokyo'     AS id FROM DUAL
  UNION ALL SELECT  'Helsinki'  AS id FROM DUAL
  )
  select id BULK COLLECT into cities_ids from tab1;

    FOR i IN 1..cities_ids.COUNT LOOP
        DBMS_OUTPUT.PUT_LINE(cities_ids(i));
    END LOOP;

END;

https://blogs.oracle.com/oraclemagazine/bulk-processing-with-bulk-collect-and-forall

https://stackoverflow.com/questions/24488620/how-to-select-into-array-of-numbers-in-oracle-pl-sql


sqlgate tip

카테고리 없음 2020. 5. 21. 11:02

sqlgate tip

--DBMS_OUTPUT 창
보기 > DBMS OUTPUT (alt+v d)


--PL/SQL 편집
파일>새로 만들기>PL/SQL 편집기


# 디렉토리 없이 복사
find SRC_DIR -type f -exec cp {} TGT_DIR \;


SELECT TO_CHAR(1234.56, '0,000.00') FROM dual; --  1,234.56
SELECT TO_NUMBER(REPLACE('1,234.56', ',', '')) FROM dual;--1234.56