码迷,mamicode.com
首页 > 数据库 > 详细

Oracle PLSQL Demo - 13.游标的各种属性[Found NotFound ISOpen RowCount CURSOR]

时间:2015-06-29 23:36:21      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

declare
    r_emp scott.emp%rowtype;
    cursor cur_emp is
        select t.* from scott.emp t;

begin

    open cur_emp;

    if cur_emp%isopen then
        dbms_output.put_line(is open...);
    end if;

    loop
        fetch cur_emp
            into r_emp;
    
        if cur_emp%found then
            dbms_output.put_line(found...);
        end if;
    
        if cur_emp%notfound then
            dbms_output.put_line(not found...);
        end if;
    
        exit when cur_emp%notfound;
    
        dbms_output.put_line(cur_emp%rowcount ||  ->  || r_emp.empno ||
                                 || r_emp.sal);
    
    end loop;

    close cur_emp;

end;

 

Oracle PLSQL Demo - 13.游标的各种属性[Found NotFound ISOpen RowCount CURSOR]

标签:

原文地址:http://www.cnblogs.com/nick-huang/p/4609089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!