Oracle 9i 游标
2006-08-04 11:57:52 来源:WEB开发网2. %found属性
该属性功能是测试前一个fetch语句是否有值,有值将返回true,否则为false。
在【SQLPlus Worksheet】中执行下列PL/SQL程序。该程序利用%found属性判断游标是否有数据。
执行结果如图9.38所示。
―――――――――――――――――――――――――――――――――――――
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;
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属性的反逻辑,常被用于退出循环。
在【SQLPlus Worksheet】中执行下列PL/SQL程序。该程序利用%notfound属性判断游标是否没有数据。
执行结果如图9.39所示。
【配套程序位置】:第9章\ notfoundattribute.sql。
4. %rowcount属性
该属性用于返回游标的数据行数。
在SQLPlus Worksheet的【代码编辑区】执行下列PL/SQL程序,该程序利用%rowcount属性判断游标数据行数。
执行结果如图9.40所示。
【配套程序位置】:第9章\ rowcountattribute.sql。
若返回值为0,表明游标已经打开,但没有提取出数据。
- ››oracle 中 UPDATE nowait 的使用方法
- ››Oracle ORA-12560解决方法
- ››Oracle 10g RAC 常用维护命令
- ››Oracle如何在ASM中定位文件的分布
- ››Oracle的DBMS_RANDOM.STRING 的用法
- ››oracle 外部表导入时间日期类型数据,多字段导入
- ››Oracle中查找重复记录
- ››oracle修改用户登录密码
- ››Oracle创建删除用户、角色、表空间、导入导出等命...
- ››Oracle中登陆时报ORA-28000: the account is lock...
- ››Oracle数据库在配置文件中更改最大连接数
- ››Oracle中在pl/sql developer修改表的两种方式
更多精彩
赞助商链接