打开游标
要使用创建好的游标,接下来要打开游标,语法结构如下:
open 游标名;
打开游标的过程有以下两个步骤:
(1)将符合条件的记录送入内存。
(2)将指针指向第一条记录。
提取游标数据
要提取游标中的数据,使用fetch命令,语法形式如下。
fetch 游标名 into 变量名1, 变量名2,;
或
fetch 游标名 into 记录型变量名;
在中执行下列PL/SQL程序,该程序定义cursorrecord变量是游标mycursor的记录行变量,在游标mycursor的结果中找到sal字段大于800的第一个记录,显示deptno字段的内容。
执行结果如图9.36所示。
――――――――――――――――――――――――――――――――――――― set serveroutput on declare tempsal scott.emp.sal%type; cursor mycursor is select * from scott.emp where saltempsal; cursorrecord mycursor%rowtype; begin tempsal:=800; open mycursor; fetch mycursor into cursorrecord; dbms_output.put_line(to_char(cursorrecord.deptno)); end; ―――――――――――――――――――――――――――――――――――――
:第9章 cursorfetch.sql。
关闭游标
使用完游标后,要关闭游标,使用close命令,语法形式如下:
close 游标名;
游标的属性
游标提供的一些属性可以帮助编写PL/SQL程序,游标属性的使用方法为:游标名[属性],例如mycursor%isopen,主要的游标属性如下。
1. %isopen属性
该属性功能是测试游标是否打开,如果没有打开游标就使用fetch语句将提示错误。
在中执行下列PL/SQL程序,该程序利用%isopen属性判断游标是否打开。执行结果如图9.37所示。
――――――――――――――――――――――――――――――――――――― set serveroutput on declare tempsal scott.emp.sal%type; cursor mycursor is select * from scott.emp where saltempsal; 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。
2. %found属性
该属性功能是测试前一个fetch语句是否有值,有值将返回true,否则为false。
在中执行下列PL/SQL程序。该程序利用%found属性判断游标是否有数据。
执行结果如图9.38所示。
――――――――――――――――――――――――――――――――――――― set serveroutput on declare tempsal scott.emp.sal%type; cursor mycursor is select * from scott.emp where saltempsal; cursorrecord mycursor%rowtype; begin tempsal:=800; open mycursor; fetch mycursor into cursorrecord; if mycursor%found then dbms_output.put_line(to_char(cursorrecord.deptno)); else dbms_output.put_line('没有数据!'); end if; end; ―――――――――――――――――――――――――――――――――――――
:第9章 foundattribute.sql。
3. %notfound属性
该属性是%found属性的反逻辑,常被用于退出循环。
在中执行下列PL/SQL程序。该程序利用%notfound属性判断游标是否没有数据。
执行结果如图9.39所示。
:第9章 notfoundattribute.sql。
4. %rowcount属性
该属性用于返回游标的数据行数。
在SQLPlus Worksheet的执行下列PL/SQL程序,该程序利用%rowcount属性判断游标数据行数。
执行结果如图9.40所示。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/):第9章 rowcountattribute.sql。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)若返回值为0,表明游标已经打开,但没有提取出数据。
猜你喜欢