oracle存储过程中的返回结果集

create or replace procedure test
as
begin
cursor cursor_test is select * from a;
row_test a%rowtype;
begin
for row_test in cursor_test loop
dbms_output.put_line(row_test.ano||row_test.aname||row_test.aage);
end loop;
end test;


调用方法:

调用方法:
(1EXEC test;
(2begin
test;
end;

.net调用Oracle存储过程

 

相关文章:

  • 2021-06-10
  • 2021-12-10
  • 2022-02-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-11-28
  • 2021-03-31
  • 2021-09-10
相关资源
相似解决方案