当前位置: 首页 > 图文教程 > 数据库 > Oracle > Oracle认证:利用bulkcollect实现cursor批量fetch

Oracle
大型数据库的设计原则与开发技巧
Oracle重做日志文件
如何使用Oracle的COALESCE函数
使用Oracle 10g Data Pump重组表空间
asp连接oracle
C++连接Oracle
详解Oracle的几种分页查询语句
简述Oracle数据仓库的体系结构
如何从完好的数据文件恢复oracle数据库
Oracle中OSFA和数据仓库简介
Oracle数据库段管理有技巧
Oracle中存取控制介绍
日志操作模式,Oracle数据的保护伞
Oracle中SQL语句解析的步骤
Oracle多粒度封锁机制研究(一)
Oracle多粒度封锁机制研究(二)
Oracle:教你删除Oracle数据库中重复没用的数据
Oracle:外部表在Oracle数据库中使用心得
Oracle:使用Oracle外部表的五个限制
Oracle:为什么Oracle字段的默认值不能用?

Oracle认证:利用bulkcollect实现cursor批量fetch


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-30   浏览: 38 ::
收藏到网摘: n/a

  在一般的情况下,使用批量fetch的几率并不是很多,但是Oracle提供了这个功能我们最好能熟悉一下,说不定什么时候会用上它。
  declare
  cursor c1 is select * from t_depart;
  v_depart t_depart%rowtype ;
  type v_code_type is table of t_depart.depart_code%type ;
  v_code v_code_type ;
  type v_name_type is table of t_depart.depart_name%type ;
  v_name v_name_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_code , v_name ;
  for i in 1..v_code.count loop
  dbms_output.put_line(v_code(i)||||v_name(i));
  end loop;
  close c1;
  end;
  通过上面的这个例子,大家可以发现如果列很多的话,为每一列定义一个集合似乎有些繁琐,可以把集合和%rowtype结合起来一起使用来简化程序!
  declare
  cursor c1 is select * from t_depart;
  type v_depart_type is table of t_depart%rowtype ;
  v_depart v_depart_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_depart ;
  for i in 1..v_depart.count loop
  dbms_output.put_line(v_depart(i).depart_code||||
  v_depart(i).depart_name);
  end loop;
  close c1;
  end;
  在输出结果时,既可以使用集合的count属性和可以使用first和last,在引用%rowtype类型的内容时,还有一个需要注意的地方是v_depart(i).depart_code,而不是v_depart.depart_code(i),当然没有这样的写法,即使有意义也并不一样。
  declare
  cursor c1 is select * from t_depart;
  type v_depart_type is table of t_depart%rowtype ;
  v_depart v_depart_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_depart ;
  for i in v_depart.first..v_depart.last loop
  dbms_output.put_line(v_depart(i).depart_code||||
  v_depart(i).depart_name);
  end loop;
  close c1;
  end;