課程
/數(shù)據(jù)庫
/Oracle
/Oracle存儲(chǔ)過程和自定義函數(shù)
程序包和程序體都創(chuàng)建OK了,怎么在命令行里將其調(diào)用并輸出 emp_list里面的全部數(shù)據(jù)?
2016-07-23
源自:Oracle存儲(chǔ)過程和自定義函數(shù) 6-1
正在回答
begin
mypackage01.queryEmpList(20);
end;
/
create or replace package emp_pack is
? type empcursor is ref cursor;
? procedure emp_pro(emp_id in integer,emp_list out empcursor);
create or replace package body emp_pack is
? procedure emp_pro(emp_id in integer,emp_list out empcursor) is
? ? begin
? ? open emp_list for select * from employees e where e.employee_id = emp_id;
? ? end;
這樣調(diào)用嗎?
?exec emp_pack.emp_pro(1);
使用select func_name() from dual;
像正常函數(shù)一樣調(diào)用就好了
舉報(bào)
Java開發(fā)重要課程,Oracle數(shù)據(jù)庫開發(fā)工程師的加薪利器
1 回答怎樣調(diào)用包里的存儲(chǔ)過程, 返回光標(biāo)???
1 回答Java調(diào)用存儲(chǔ)過程結(jié)果集為空
1 回答包體中的光標(biāo)什么時(shí)候關(guān)閉啊?
5 回答我的hello word 怎么打印不出來
1 回答調(diào)用存儲(chǔ)時(shí)
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2019-04-25
begin
mypackage01.queryEmpList(20);
end;
/
2016-07-29
create or replace package emp_pack is
? type empcursor is ref cursor;
? procedure emp_pro(emp_id in integer,emp_list out empcursor);
end;
create or replace package body emp_pack is
? procedure emp_pro(emp_id in integer,emp_list out empcursor) is
? ? begin
? ? open emp_list for select * from employees e where e.employee_id = emp_id;
? ? end;
end;
這樣調(diào)用嗎?
?exec emp_pack.emp_pro(1);
2016-07-24
使用select func_name() from dual;
像正常函數(shù)一樣調(diào)用就好了