asp 调用 oracle存储过程并返回结果集
【程序编程相关:(转)游戏外挂设计技术探讨(上)】 【推荐阅读:Vrml 路在何方—正在做或准备做vrm】看过网上好多asp调用oracle的方法,但是没有特好特直接的东西,所以总结各家的东西最后得出的一个自己需要的方法,感觉也比较大众所以特此发布 【扩展信息:探索软件设计模式(二)】###################################################
oracle的存储过程 ###################################################--创建包头
create or replace package pck_as as type t_product_id is table of number index by binary_integer; type t_serial_no is table of varchar(300) index by binary_integer; type t_buy_date is table of date index by binary_integer; procedure allsfc ( product_id out t_product_id, serial_no out t_serial_no, buy_date out t_buy_date ); --procedure allsfc1; end pck_as; --创建包体 create or replace package body pck_as as procedure allsfc ( product_id out t_product_id, serial_no out t_serial_no, buy_date out t_buy_date ) ... 下一页