欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据采集

程序员文章站 2022-07-02 09:24:45
...

1.loop的用法

数据采集
2.游标(cursor)的用法

A.隐式游标

游标是SQL的一个内存工作区,由系统或用户以变量的形式定义。游标的作用就是用于临时存储从数据库中提取的数据块。在某些情况下,需要把数据从存放在磁盘的表中调到计算机内存中进行处理,最后将处理结果显示出来或最终写回数据库。这样数据处理的速度才会提高,否则频繁的磁盘数据交换会降低效率。
二  类型
 Cursor类型包含三种: 隐式Cursor,显式Cursor和Ref Cursor(动态Cursor)。
1. 隐式Cursor:
1).对于Select …INTO…语句,一次只能从数据库中获取到一条数据,对于这种类型的DML Sql语句,就是隐式Cursor。例如:Select /Update / Insert/Delete操作。
2)作用:可以通过隐式Cusor的属性来了解操作的状态和结果,从而达到流程的控制。Cursor的属性包含:
SQL%ROWCOUNT 整型 代表DML语句成功执行的数据行数
SQL%FOUND  布尔型  值为TRUE代表插入、删除、更新或单行查询操作成功
SQL%NOTFOUND 布尔型 与SQL%FOUND属性返回值相反
SQL%ISOPEN 布尔型 DML执行过程中为真,结束后为假
3) 隐式Cursor是系统自动打开和关闭Cursor.

下面是一个简单的例子:

declare
  tempName tb_student.student_name%type;
begin
  select t.student_name into tempName from tb_student t where t.student_id = '1';
  if SQL%found then
    dbms_output.put_line('select successfully!');
    dbms_output.put_line(tempName);
    else
      dbms_output.put_line('select failed !');
  end if;
end;

 输出:

select successfully!
高红成

 

B.显示游标(cursor)

when the named cursor is opened, the pointer will be positioned to the first row of the result set, if exists. The cursor%notfound will return NULL, which has no affect to statement "exit when cursor%notfound" for the loop will not exit until cursor%notfound is evaluted as TRUE. The FETCH statemetn will retrieve the current row and move the pointer to the next row.  The cursor%notfound will return FALSE if the most recent fetch from the named cursor returned a row. So the best position for statement "exit when cursor%notfound" is immediated follow a FETCH cursor.  If  "exit when cursor%notfound" is put before FETCH, the last loop will process the row after the last row of the result set, which is NULL. PL/SQL will not raise an exception when fetch statement returns no rows.

(1) 对于从数据库中提取多行数据,就需要使用显式Cursor。显式Cursor的属性包含:
游标的属性   返回值类型   意    义 
%ROWCOUNT   整型  获得fetch语句返回的数据行数 
%FOUND  布尔型 最近的fetch语句返回一行数据则为真,否则为假 
%NOTFOUND   布尔型 与%FOUND属性返回值相反 
%ISOPEN 布尔型 游标已经打开时值为真,否则为假 

(2) 对于显式游标的运用分为四个步骤:
1. 定义游标---Cursor  [Cursor Name]  IS;
2. 打开游标---Open  [Cursor Name];
3. 操作数据---Fetch  [Cursor name]
4. 关闭游标---Close [Cursor Name],这个Step绝对不可以遗漏。
(3)以下是二种常见显式Cursor用法。

a.使用fetch

b.使用for.. in

 

 

 

 

参考:http://blog.sina.com.cn/s/blog_713bf4fe0100x27v.html