首页 > 数据库技术 > 详细

oracle调用array参数存储过程

时间:2015-06-19 13:13:09      阅读:254      评论:0      收藏:0      [点我收藏+]
declare
  -- Non-scalar parameters require additional processing 
  
   files  tyt_gas2014_search;
   
   temp  tyo_gas2014_search:=tyo_gas2014_search(CREATOR,1,test,1);
   temp1 tyo_gas2014_search:=tyo_gas2014_search(CREATETIME,4,2015/4/17 0:00:00,3);
   temp2 tyo_gas2014_search:=tyo_gas2014_search(CREATETIME,3,2015/6/18 0:00:00,3);
   
 
begin
 
  -- Call the procedure
 
   files := tyt_gas2014_search(); 
   files.extend(3); 
   
   files(1):= temp;
   files(2):= temp1;
   files(3):= temp2;
 
  pkg_gas2014_pagehelp.p_gas2014_gettablepagewhere(files => files,
                                                   sqlwhere => :sqlwhere);
end;

 

oracle调用array参数存储过程

原文:http://www.cnblogs.com/qtchao520/p/4588158.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!