목록OPEN (2)
어느 가을날의 전환점
ORACLE|타입(TYPE, ROWTYPE), 커서(CURSOR)
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;
Database/Oracle
2013. 7. 24. 10:52
JAVASCRIPT|팝업 창에서 부모 창의 함수 호출 방법(opener)
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..
Development
2012. 3. 14. 09:30