분류 전체보기
-
PL/SQL - 커서Platform/규격 2015. 4. 5. 17:17
- 암시적 커서 - 명시적 커서create or replace procedure emp_processisv_empno emp.empno%TYPE;v_ename emp.ename%TYPE;v_sal NUMBER(7,2);cursor emp_cursor(v_deptno number) isselect empno, ename, sal from emp where deptno = v_deptno;beginopen emp_cursor(10); loopfetch emp_cursor into v_empno, v_ename, v_sal;exit when emp_cursor%ROWCOUNT > 5 or emp_cursor%NOTFOUND; ...end loop; close emp_cursor;end emp_process;/..
-
PL/SQL프로그래밍 언어/제어 구조 2015. 4. 1. 15:51
if .. then...elsif .. then...elsif .. then...else...end if; exit[ ][ when ..]; [FOR counter IN [REVERSE] lower_bound..higher_bound|while ... ]LOOP ...END LOOP;DECLARE ctr INTEGER; ...BEGIN ... FOR ctr IN 1..25 LOOP ... IF main.ctr > 10 THEN -- refers to global variable ... END IF; END LOOP;END main; FOR step IN 1..25 LOOP FOR step IN 1..10 LOOP ... IF outer.step > 15 THEN ... END LOOP;END LOOP[ ..
-
세션 - PHPPlatform/WAS 2014. 12. 7. 19:48
- 쿠키setcookie()$_COOKIE[] - 세션각 방문자에게 고유한 ID (UID)를 생성하고, 이 UID 를 기준으로 변수를 저장하여 작동합니다. UID 는 cookie 에 저장하거나, URL에 전달된다 session_start()해당 페이지에서 세션을 사용하겠다?session_destroy()$_SESSION[]unset() c.f. session_unregister() 참조 사이트:http://jun.hansung.ac.kr/ServerWP/PHP/PHP%20Sessions.html
-