博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle中anyData数据类型的使用实例
阅读量:5225 次
发布时间:2019-06-14

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

---创建waterfall

create or replace type waterfall is object(name varchar2(30),height number);

--创建river

create or replace type rivertest is object(name varchar2(30),length number);

 

create or replace procedure anydataTest

/*
*该实例演示了一种在参数传递时可以在集合中传递多个不同数据类型元素的例子
*可以将不同数据类型的元素全部转换成anyData类型添加到集合中,然后在程序间
*通过集合来传递多个数据元素。
*然后在后续的处理中根据元素的实际类型分别调用对应类型的成员方法做相应的处理
*/
is
type feature_array is varray(2) of sys.anydata;
v_feature feature_array;
wf waterfall;
rv rivertest;
ret_val number;
v_index pls_integer;
begin
v_feature := feature_array(
anydata.convertobject(
waterfall('waterfall1',12)
),
anydata.convertobject(
rivertest('rivertes',34)
)
);
--遍历集合
v_index := v_feature.first;
while(v_index is not null)
loop
case v_feature(v_index).gettypename
when 'BISBNK.WATERFALL' then
ret_val := v_feature(v_index).getobject(wf);
dbms_output.put_line('waterfall name:'||wf.name ||' height:'||wf.height);
when 'BISBNK.RIVERTEST' then
ret_val := v_feature(v_index).getobject(rv);
dbms_output.put_line('river name:'||rv.name ||' length:'||rv.length);
else
dbms_output.put_line('unknow type:'||v_feature(v_index).gettypename);
end case;
v_index := v_feature.next(v_index);
end loop;
exception
when no_data_found then
dbms_output.put_line('no data found');
raise;
when others then
dbms_output.put_line(sqlcode||': '||sqlerrm);
raise;
end;

posted on
2015-02-12 17:15 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/moonfans/p/4288537.html

你可能感兴趣的文章
IOS Google语音识别更新啦!!!
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
Linux升级内核教程(CentOS7)
查看>>
Lintcode: Partition Array
查看>>
类别的三个作用
查看>>
Maximum Product Subarray
查看>>
[转载] MySQL的四种事务隔离级别
查看>>
QT文件读写
查看>>
C语言小项目-火车票订票系统
查看>>