-
----- 光标 --包和主体------- CREATE OR REPLACE PACKAGE MYPACKAGE AS /* TODO enter package declarations (types, exceptions, methods etc) here */ type empcursor is ref cursor; procedure queryEmpList(dno in number,empList out empcursor); END MYPACKAGE; CREATE OR REPLACE PACKAGE BODY MYPACKAGE AS procedure queryEmpList(dno in number,empList out empcursor) AS BEGIN --打开光标 open empList for select * from emp where 1=1; END queryEmpList; END MYPACKAGE;查看全部
-
你好查看全部
-
访问包中的存储过程查看全部
-
包头的内容查看全部
-
包体的内容查看全部
-
在out参数中使用光标查看全部
-
选用存储函数和存储过程的原则查看全部
-
参数在存储过程和存储函数中查看全部
-
in和out参数查看全部
-
要注意要有一个return子句,用于返回函数值查看全部
-
存储函数的语法查看全部
-
创建存储过程查看全部
-
存储函数跟存储过程查看全部
-
存储过程和存储函数查看全部
-
使用存储函数、存储过程的原则:如果只有一个返回值,用存储函数;否则,就用存储过程。查看全部
举报
0/150
提交
取消