WEB开发网
开发学院数据库Oracle Oracle 9i 游标 阅读

Oracle 9i 游标

 2006-08-04 11:57:52 来源:WEB开发网   
核心提示: 关闭游标使用完游标后,要关闭游标,Oracle 9i 游标(3),使用close命令,语法形式如下:close 游标名;游标的属性游标提供的一些属性可以帮助编写PL/SQL程序,该程序利用%isopen属性判断游标是否打开,执行结果如图9.37所示,游标属性的使用方法为:游标名[属性],例

关闭游标

使用完游标后,要关闭游标,使用close命令,语法形式如下:

close 游标名;

游标的属性

游标提供的一些属性可以帮助编写PL/SQL程序,游标属性的使用方法为:游标名[属性],例如mycursor%isopen,主要的游标属性如下。

1. %isopen属性

该属性功能是测试游标是否打开,如果没有打开游标就使用fetch语句将提示错误。

在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序利用%isopen属性判断游标是否打开。执行结果如图9.37所示。

  ―――――――――――――――――――――――――――――――――――――
   set serveroutput on
   declare
     tempsal scott.emp.sal%type;
     cursor mycursor is
       select * from scott.emp
       where sal>tempsal;
     cursorrecord mycursor%rowtype;
    begin
     tempsal:=800;
     if mycursor%isopen then
       fetch mycursor into cursorrecord;
       dbms_output.put_line(to_char(cursorrecord.deptno));
     else
       dbms_output.put_line('游标没有打开!');
     end if;
   end;
   ―――――――――――――――――――――――――――――――――――――

【配套程序位置】:第9章\ isopenattribute.sql。

上一页  1 2 3 4  下一页

Tags:Oracle 游标

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接