游标的使用
Posted 小草吹又生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了游标的使用相关的知识,希望对你有一定的参考价值。
declare
cur_book readerinfo%rowtype;
begin
select * into cur_book from readerinfo where readerid=9701;
if sql%isopen then
dbms_output.put_line (‘isopen属性为true‘);
else
dbms_output.put_line (‘isopen属性为false‘);
end if;
if sql%found then
dbms_output.put_line(‘%found为true‘);
end if;
update readerinfo set sex =‘nv‘ where sex=‘男‘;
dbms_output.put_line(‘修改脚本记录数:‘ || sql%rowcount);
rollback;
exception ---异常处理部分
when no_data_found then
dbms_output.put_line(sql%rowcount);
end;
以上是关于游标的使用的主要内容,如果未能解决你的问题,请参考以下文章