摘要:
Ref_cursor属于动态cursor(直到运行时才知道这条查询)。返回一个Table.--说明:从ERP数据库查询出所有的店铺 --作者:杨斌 --日期:2012-08-09 procedure getAllShopsFromERP( all_shops_out out sys_refcursor, --返回店铺结果集 out_error_row out number, --错误行 out_error_msg out varchar2 --错误信息 ) is str_sql varchar2(4000);--定义查询SQL语句变量 begin out_error_row :=0;--... 阅读全文