Home  >  Article  >  Database  >  游标的使用

游标的使用

WBOY
WBOYOriginal
2016-06-07 16:10:251404browse

定义游标: cursor calenderStatus_cur is select * from ut_calenderStatus ; vr_calenderStatus ut_calenderStatus % rowtype; 打开游标,提取游标中的数据到游标行中: open calenderStatus_cur; loop fetch calenderStatus_cur into vr_calenderStatus;

定义游标:

    cursor calenderStatus_cur 
    is
    select * from ut_calenderStatus ;
    vr_calenderStatus      ut_calenderStatus % rowtype;


打开游标,提取游标中的数据到游标行中:

    open calenderStatus_cur;
        loop
          fetch calenderStatus_cur into vr_calenderStatus;
          exit when calenderStatus_cur % notfound;
          up_日历_产品开放期设置(pi_serviceid,pi_opid,vr_calenderStatus.Calenderstatus,vr_calenderStatus.Fundcode,'0',pi_rq,pi_begin,pi_end,
                                       vr_calenderStatus.m,vr_calenderStatus.n,vr_calenderStatus.Prolong,po_returnmsg ,po_returncode); 
          if po_returncode <> &#39;0000&#39; then
           rollback;
           return;
          end if;          
        end loop;
    close calenderStatus_cur;


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHPRedis类操作Next article:hive元数据库配置、metadata