博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle :一次数据库连接,返回多个结果集
阅读量:6090 次
发布时间:2019-06-20

本文共 5411 字,大约阅读时间需要 18 分钟。

 

1. 一次数据库连接,返回多个结果集

1.1 建立包规范

create or replace package QX_GDJTJ is  -- Author  : xxx  -- Created : 2012-1-1  -- Purpose : 统计主设备缺陷  TYPE T_CURSOR IS REF CURSOR; PROCEDURE GETGDJQXTJ(    cur_id in varchar,    cur_GDJQXTJ1 OUT T_CURSOR,    cur_GDJQXTJ2 OUT T_CURSOR,    cur_GDJQXTJ3 OUT T_CURSOR);end QX_GDJTJ;

1.2 建立包体

create or replace package body QX_GDJTJ isPROCEDURE GETGDJQXTJ(    cur_id in varchar,    cur_GDJQXTJ1 OUT T_CURSOR,    cur_GDJQXTJ2 OUT T_CURSOR,    cur_GDJQXTJ3 OUT T_CURSOR)ISBEGINOPEN cur_GDJQXTJ1 FORselect (select count(0) from HVM_VIEW_QX where voltage='500kV' and gdjid=cur_id )-(select count(0) from HVM_VIEW_QX where voltage='500kV' and gdjid=cur_id and cljg like '%合格%' and cljg not like '%不合格%') from dual; OPEN cur_GDJQXTJ2 FOR select (select count(0) from HVM_VIEW_QX where voltage='220kV' and gdjid=cur_id )-(select count(0) from HVM_VIEW_QX where voltage='220kV' and gdjid=cur_id and cljg like '%合格%' and cljg not like '%不合格%') from dual; OPEN cur_GDJQXTJ3 FOR select (select count(0) from HVM_VIEW_QX where voltage='110kV' and gdjid=cur_id )-(select count(0) from HVM_VIEW_QX where voltage='110kV' and gdjid=cur_id and cljg like '%合格%' and cljg not like '%不合格%') from dual; end GETGDJQXTJ; end QX_GDJTJ;

 

1.3 C#调用,返回结果集

public static DataSet GetDataSet(string gdjId, string proName, string[] cursors) { OracleConnection Conn = GetConn(); DataSet ds = new DataSet(); try {     OracleCommand cmd = new OracleCommand();     cmd.Connection = Conn;     cmd.CommandText = proName;     cmd.CommandType = CommandType.StoredProcedure;     cmd.Parameters.Add("cur_id", OracleType.VarChar).Value = gdjId;     for (int i = 0; i < cursors.Length; i++)     {       cmd.Parameters.Add(cursors[i], OracleType.Cursor).Direction = ParameterDirection.Output;     } OracleDataAdapter da = new OracleDataAdapter(cmd); da.Fill(ds); } catch (System.Data.OracleClient.OracleException ex) { throw new Exception(ex.Message); } finally { Conn.Close(); } return ds; }

 

 

 

2. 基础知识

在给出具体的方法之前,我们先来看看以下几个名词的含义。

2.1 包的组成

包头(package):包头部分申明包内数据类型,常量,变量,游标,子程序和异常错误处理,这些元素为包的公有元素。

包主体(package body):包主体则是包定义部分的具体实现,它负责为包头中所声明子程序提供具体的实现,在包主体中还可以声明包的私有元素。

包头和包主体分开编译,并作为两个分开的对象分别存放在数据库字典中。

 

2.2 包的语法规则

包头的语法如下:

create or replace package 包名  As | IS            procedure 过程名();            Function 函数名() return 数据类型;             变量定义;            异常定义;            光标定义;            ...........            ...........  End 包名;

包体创建的语法:

create or replace Package Body 包名  As | IS              Procedure 过程定义;              Procedure 过程定义;               Function 函数定义;              Function 函数定义;                  .........;    end 包名;

 

2.3 示例

示例1

create or replace package circle_packageaspi number(6,2):=3.14;function fun_get_circle_area(param_r number) return number;function fun_get_circle_c(param_r number) return number;end circle_package; /create or replace package  body circle_packageasfunction fun_get_circle_area(param_r number) return numberasbeginreturn pi*power(param_r,2);end;function fun_get_circle_c(param_r number) return numberasbeginreturn pi*param_r*2;end;end circle_package; /declarev_area number(6,2);v_c number(6,2);v_r number(5):=3;beginv_area:=circle_package.fun_get_circle_area(v_r);v_c:=circle_package.fun_get_circle_c(v_r);Dbms_output.put_line('圆的半径:'||v_r );Dbms_output.put_line('圆的周长:'||v_c );Dbms_output.put_line('圆的面积:'||v_area  );end;

 

SQL> set serveroutput on;
SQL> /

圆的半径:3

圆的周长:18.84
圆的面积:28.26

PL/SQL procedure successfully completed

 

示例2

下面是student 和SC表的定义:

CREATE TABLE Student             (Sno CHAR(9) PRIMARY KEY,              Sname CHAR(20) NOT NULL,               Ssex CHAR(4),              Sage SMALLINT,              Sdept CHAR(20)) tablespace starivespace;                  CREATE TABLE SC               (Sno CHAR(9) NOT NULL,                Cno CHAR(6) NOT NULL,                 Grade SMALLINT,                PRIMARY KEY (Sno,Cno),                constraint f1 FOREIGN KEY (Sno) REFERENCES Student(Sno),                FOREIGN KEY (Cno) REFERENCES Course(Cno)            ) tablespace starivespace

实例:定义一个包,实现如果功能: 输入学号,分别返回该学生的所在系和相应的选课成绩(如果有多门成绩,那么就输出多门成绩)。

定义包头

 

create or replace        package sdept_or_grade as         procedure print_sdept(psno char);         procedure print_grade(psno char);         end;         /

 

  1. 程序包已创建。

创建包体

create or replace      package body sdept_or_grade       as      procedure print_sdept(psno char) as          psdept student.sdept%type;      begin           select sdept into psdept          from student          where sno=psno;          dbms_output.put_line(psdept);          exception          when no_data_found then              dbms_output.put_line(\'Invalid student number\');      end;      procedure print_grade(psno char) as          pgrade SC.grade%type;      cursor printgrade is select grade into pgrade          from sc          where sno=psno;            begin          open printgrade;         loop          fetch printgrade into pgrade;              dbms_output.put_line(pgrade);      exit when printgrade%notfound;      end loop;      close printgrade;      exception          when no_data_found then              dbms_output.put_line(\'Invalid student number\');      end;      end;      /
View Code

 

 

程序包体已创建。

获取结果

 

SQL> set serveroutput on;  SQL>  SQL> execute sdept_or_grade.print_sdept(\'0201\');  cs    PL/SQL 过程已成功完成。    SQL>  SQL> execute sdept_or_grade.print_grade(\'0201\');  89  64  50  50    PL/SQL 过程已成功完成。

 

 

 

 

 

 

 

 

参考文章

 

转载地址:http://lymwa.baihongyu.com/

你可能感兴趣的文章
网络安全管理技术作业-SNMP实验报告
查看>>
根据Uri获取文件的绝对路径
查看>>
Flutter 插件开发:以微信SDK为例
查看>>
.NET[C#]中NullReferenceException(未将对象引用到实例)是什么问题?如何修复处理?...
查看>>
边缘控制平面Ambassador全解读
查看>>
Windows Phone 7 利用计时器DispatcherTimer创建时钟
查看>>
程序员最喜爱的12个Android应用开发框架二(转)
查看>>
vim学习与理解
查看>>
DIRECTSHOW在VS2005中PVOID64问题和配置问题
查看>>
MapReduce的模式,算法以及用例
查看>>
《Advanced Linux Programming》读书笔记(1)
查看>>
zabbix agent item
查看>>
一步一步学习SignalR进行实时通信_7_非代理
查看>>
为什么我弃用GNOME转向KDE(2)
查看>>
Redis学习记录初篇
查看>>
爬虫案例若干-爬取CSDN博文,糗事百科段子以及淘宝的图片
查看>>
Web实时通信技术
查看>>
第三章 计算机及服务器硬件组成结合企业运维场景 总结
查看>>
IntelliJ IDEA解决Tomcal启动报错
查看>>
默认虚拟主机设置
查看>>