热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

如何在oracle数据库中使用游标

游标是SQL的一个内存工作区,由系统或用户以变量的形式定义。游标的作用就是用于临时存储从数据库中提取的数据块。Oracle数据库的Cursor类型包含三种:静态游标:分为显式(explicit)游标和隐式(implicit)游标;REF游标:是一种引用类型,类似于指针。
游标是SQL的一个内存工作区,由系统或用户以变量的形式定义。游标的作用就是用于临时存储从数据库中提取的数据块。Oracle数据库的Cursor类型包含三种: 静态游标:分为显式(explicit)游标和隐式(implicit)游标;REF游标:是一种引用类型,类似于指针。下面我们一一介绍它们的使用。

1.隐式游标
1)Select …INTO…语句,DML语句,使用隐式Cursor。此外,还有一种使用FOR LOOP的Implicit Cursor用法。
2)可以通过隐式Cusor的属性来了解操作的状态和结果。Cursor的属性包含:
SQL%ROWCOUNT 整型代表DML语句成功执行的数据行数。
SQL%FOUND  布尔型值为TRUE代表插入、删除、更新或单行查询操作成功。
SQL%NOTFOUND 布尔型与SQL%FOUND属性返回值相反。
SQL%ISOPEN 布尔型DML执行过程中为真,结束后为假。
3) 隐式Cursor由系统自动打开和关闭.
例如:
set serveroutput on    
declare    
begin      
update employees set employee_name='Mike' where employee_id=1001;    
if SQL%FOUND then      
dbms_output.put_line('Name is updated');    
else    
dbms_output.put_line('Name is not updated');    
end if;    
end;    
/    
set serveroutput on    
declare    
begin      
for tableInfo in (select * from user_tables) loop    
dbms_output.put_line(tableInfo.table_name);    
end loop;    
exception    
when others then    
dbms_output.put_line(sqlerrm);    
end;    
/  

2.显式游标
1) 显式Cursor的属性包含:
游标的属性   返回值类型   意义 
%ROWCOUNT   整型  获得FETCH语句返回的数据行数 
%FOUND  布尔型 最近的FETCH语句返回一行数据则为真,否则为假 
%NOTFOUND   布尔型 与%FOUND属性返回值相反 
%ISOPEN 布尔型 游标已经打开时值为真,否则为假  
2) 对于显式游标的运用分为四个步骤:
a 定义游标---Cursor  [Cursor Name]  IS;
b 打开游标---Open  [Cursor Name]; 
c  操作数据---Fetch  [Cursor name] 
d  关闭游标---Close [Cursor Name]
以下是几种常见显式Cursor用法。

set serveroutput on    
declare    
cursor cur is select * from user_tables;    
tableInfo user_tables%rowtype;    
begin    
open cur;        
loop    
fetch cur into tableInfo;    
exit when cur%notfound;    
dbms_output.put_line(tableInfo.table_name);    
end loop;

exception    
when others then    
dbms_output.put_line(sqlerrm);

  close cur;    
end;    
/

    
set serveroutput on    
declare    
cursor cur is select * from user_tables;    
begin      
for tableInfo in cur loop    
dbms_output.put_line(tableInfo.table_name);    
end loop;    
exception    
when others then    
dbms_output.put_line(sqlerrm);    
end;    
/  
还可以使用带参数open的cursor。

set serveroutput on    
declare    
cursor cur(tblName varchar2) is select * from user_constraints where table_name=tblName;    
tableInfo user_constraints%rowtype;    
begin    
open cur('EMPLOYEES');        
loop    
fetch cur into tableInfo;    
exit when cur%notfound;    
dbms_output.put_line(tableInfo.constraint_name);    
end loop;

exception    
when others then    
dbms_output.put_line(sqlerrm);

  close cur;    
end;    
/

    
set serveroutput on    
declare    
cursor cur(tblName varchar2) is select * from user_constraints where table_name=tblName;    
begin    
for tableInfo in cur('EMPLOYEES') loop    
dbms_output.put_line(tableInfo.constraint_name);    
end loop;    
exception    
when others then    
dbms_output.put_line(sqlerrm);    
end    
/  
可以使用WHERE CURRENT OF子句执行UPDATE或DELETE操作。
set serveroutput on    
declare    
cursor cur is select * from employees for update;    
begin      
for tableInfo in cur loop    
update employees set salarysalary=salary*1.1 where current of cur;    
end loop;    
commit;    
exception    
when others then    
dbms_output.put_line(sqlerrm);    
end;    
/  

3.REF CURSOR(Cursor Variables)
REF Cursor在运行的时候才能确定游标使用的查询。利用REF CURSOR,可以在程序间传递结果集(一个程序里打开游标变量,在另外的程序里处理数据)。
也可以利用REF CURSOR实现BULK SQL,提高SQL性能。
REF CURSOR分两种,Strong REF CURSOR 和 Weak REF CURSOR。
Strong REF CURSOR:指定retrun type,CURSOR变量的类型必须和return type一致。
Weak REF CURSOR:不指定return type,能和任何类型的CURSOR变量匹配。
Ref cursor的使用:
1) Type [Cursor type name] is ref cursor 
2) Open cursor for...
3) Fetch  [Cursor name] 
4) Close Cursor
例如:
Step1:
create or replace package TEST as    
type employees_refcursor_type is ref cursor return employees%rowtype;    
procedure employees_loop(employees_cur IN employees_refcursor_type);    
end TEST;    
/   
Step2:
create or replace package body TEST as    
procedure employees_loop(employees_cur IN employees_refcursor_type) is    
emp employees%rowtype;    
begin    
loop    
fetch employees_cur into emp;    
exit when employees_cur%NOTFOUND;    
dbms_output.put_line(emp.employee_id);    
end loop;    
end employees_loop;    
end TEST;    

Step3:
set serveroutput on    
declare    
empRefCur TEST.employees_refcursor_type;    
begin    
for i in 10..20 loop    
dbms_output.put_line('Department ID=' || i);    
open empRefCur for select * from employees where department_id=i;    
TEST.employees_loop(empRefCur);    
end loop;    
exception    
when others then    
dbms_output.put_line(sqlerrm);    
close empRefCur;    
end;    


4.BULK SQL
使用FORALL和BULK COLLECT子句。利用BULK SQL可以减少PLSQL Engine和SQL Engine之间的通信开销,提高性能。
1. To speed up INSERT, UPDATE, and DELETE statements, enclose the SQL statement within a PL/SQL FORALL statement instead of a loop construct. 加速INSERT, UPDATE, DELETE语句的执行,也就是用FORALL语句来替代循环语句。
2. To speed up SELECT statements, include the BULK COLLECT INTO clause in the SELECT statement instead of using INTO.  加速SELECT,用BULK COLLECT INTO 来替代INTO。
SQL> create table employees_tmp as select first_name, last_name, salary from employees where 0=1;  
set serveroutput on    
declare    
cursor employees_cur(depId employees.department_id%type) is select first_name, last_name, salary from employees where department_id=depId;    
type employee_table_type is table of employees_cur%rowtype index by pls_integer;    
employee_table employee_table_type;    
begin    
open employees_cur(100);    
fetch employees_cur bulk collect into employee_table;    
close employees_cur;    
for i in 1..employee_table.count loop    
dbms_output.put_line(employee_table(i).first_name || ' ' || employee_table(i).last_name || ',' || employee_table(i).salary);    
end loop;    
forall i in employee_table.first..employee_table.last    
insert into employees_tmp values(employee_table(i).first_name, employee_table(i).last_name, employee_table(i).salary);    
commit;    
end;    
/   
5.  动态性能表V$OPEN_CURSOR
本视图列出session打开的所有cursors。


推荐阅读
  • SQL中UPDATE SET FROM语句的使用方法及应用场景
    本文详细介绍了SQL中UPDATE SET FROM语句的使用方法,通过具体示例展示了如何利用该语句高效地更新多表关联数据。适合数据库管理员和开发人员参考。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 使用C#开发SQL Server存储过程的指南
    本文介绍如何利用C#在SQL Server中创建存储过程,涵盖背景、步骤和应用场景,旨在帮助开发者更好地理解和应用这一技术。 ... [详细]
  • 本文探讨了适用于Spring Boot应用程序的Web版SQL管理工具,这些工具不仅支持H2数据库,还能够处理MySQL和Oracle等主流数据库的表结构修改。 ... [详细]
  • 本文详细介绍了如何通过多种编程语言(如PHP、JSP)实现网站与MySQL数据库的连接,包括创建数据库、表的基本操作,以及数据的读取和写入方法。 ... [详细]
  • 在当前众多持久层框架中,MyBatis(前身为iBatis)凭借其轻量级、易用性和对SQL的直接支持,成为许多开发者的首选。本文将详细探讨MyBatis的核心概念、设计理念及其优势。 ... [详细]
  • 在使用 DataGridView 时,如果在当前单元格中输入内容但光标未移开,点击保存按钮后,输入的内容可能无法保存。只有当光标离开单元格后,才能成功保存数据。本文将探讨如何通过调用 DataGridView 的内置方法解决此问题。 ... [详细]
  • 本文详细介绍了如何在 Linux 平台上安装和配置 PostgreSQL 数据库。通过访问官方资源并遵循特定的操作步骤,用户可以在不同发行版(如 Ubuntu 和 Red Hat)上顺利完成 PostgreSQL 的安装。 ... [详细]
  • 如何在PostgreSQL中查看数据表
    本文将指导您使用pgAdmin工具连接到PostgreSQL数据库,并展示如何浏览和查找其中的数据表。通过简单的步骤,您可以轻松访问所需的表结构和数据。 ... [详细]
  • 利用存储过程构建年度日历表的详细指南
    本文将介绍如何使用SQL存储过程创建一个完整的年度日历表。通过实例演示,帮助读者掌握存储过程的应用技巧,并提供详细的代码解析和执行步骤。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • 在使用SQL Server进行动态SQL查询时,如果遇到LIKE语句无法正确返回预期结果的情况,通常是因为参数传递方式不当。本文将详细探讨这一问题,并提供解决方案及相关的技术背景。 ... [详细]
  • 本文介绍如何通过创建替代插入触发器,使对视图的插入操作能够正确更新相关的基本表。涉及的表包括:飞机(Aircraft)、员工(Employee)和认证(Certification)。 ... [详细]
  • MySQL缓存机制深度解析
    本文详细探讨了MySQL的缓存机制,包括主从复制、读写分离以及缓存同步策略等内容。通过理解这些概念和技术,读者可以更好地优化数据库性能。 ... [详细]
  • SQLite 动态创建多个表的需求在网络上有不少讨论,但很少有详细的解决方案。本文将介绍如何在 Qt 环境中使用 QString 类轻松实现 SQLite 表的动态创建,并提供详细的步骤和示例代码。 ... [详细]
author-avatar
l87653644
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有