일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- 도서
- error
- 마이플랫폼
- 한글
- DB
- Tomcat
- oracle
- 튜닝
- 회계
- JavaScript
- 성능
- miplatform
- Excel
- 이클립스
- 기타소득
- 태그를 입력해 주세요.
- 엑셀
- java
- 함수
- Book
- Eclipse
- MIP
- 오라클
- 데이터베이스
- Report Designer
- 에러
- JEUS
- 오류
- 톰캣
- Today
- Total
목록OPEN (2)
어느 가을날의 전환점
PACKGAE ... ()ASCURSOR CUR_TABLE ( P_AAA TABLE_A.AAA%TYPE,P_BBB TABLE_A.BBB%TYPE) ISSELECT ... FROM TABLE_A A INNER JOIN TABLE_B B ON A.AAA = B.AAA WHERE A.AAA = P_AAA AND A.BBB = P_BBB; rTABLE_A CUR_TABLE_A%ROWTYPE; BEGIN OPEN CUR_TABLE( iAAA ,iBBB );FETCH CUR_TABLE INTO rTABLE_A;CLOSE CUR_TABLE; END;
Window opener property The opener property returns a reference to the window that created the window. When opening a window with window.open(), you can use this property from the destination window to return details of the source (parent) window. Coding Tip: window.opener.close() will close the source (parent) window. Syntax window.opener 부모창 var parentWindow; function openCBAWindow(){ parentWin..