PROCEDURE [schema.]name [( parameter [, parameter ...] ) ]
[AUTHID DEFINER | CURRENT_USER]
IS
[declaration statements]
BEGIN
executable statements
[ EXCEPTION
exception handler statements]
END [name];
注:AUTHID 的参数有DEFINER和CURRENT_USER,表是该过程将在拥有者或者当前登陆用户的权限模型下执行,又称为定义者权限模型和调用者权限模型。
2.Function 的构造
FUNCTION [schema.]name [( parameter [, parameter ...] ) ]
RETURN return_datatype
[AUTHID DEFINER | CURRENT_USER]
[DETERMINISTIC]
[PARALLEL ENABLE ...]
[PIPELINED]
IS
[declaration statements]
BEGIN
executable statements
[EXCEPTION
exception handler statements]
END [ name ];
注:DETERMINISTIC 优化选项,表示是否使用返回值的复本
PARALLEL_ENABLE 优化选项,是否允许多个SELECT语句中并行调用
PIPELINED
Specifies that the results of this table function should be returned iteratively via the PIPE ROW command .
3.参数模式(实参与形参)
IN | Read-only | The value of the actual parameter can be referenced inside the module, but the parameter cannot be changed. |
OUT | Write-only | The module can assign a value to the parameter, but the parameter's value cannot be referenced. |
IN OUT | Read-write | The module can both reference (read) and modify (write) the parameter. |
如:PROCEDURE predict_activity
(last_date_in IN DATE,
task_desc_inout IN OUT VARCHAR2,
next_date_out OUT DATE)
调用方式有两种:
1 按位置调用
predict_activity(TO_DATE ('
09/23/1996
', 'MM/DD/YYYY'),’
123’
,:mdate)
2 按名称调用
new_sales :=tot_sales (company_id_in => order_pkg.company_id, status_in =>'N');
4.Package的建立与使用
1 package specification 应该遵守的规范
a.可以声明包一级的许多类型的变量和常量,如numbers, exceptions, types, and collections;但不可以在specification 和body中声明光标变量,因为它无法在session 级中持久化。
b.可以声明各种数据类型
c.可以在包中定义过程和函数
d.可以在包中定义显式光标,显式光标有两种:游标声明中包含SQL查询或SQL查询间接定义在package body中
e.如果声明了过程、函数或无查询的光标,需要相应地提供package body
f.指定AUTHID语句将决定采用何种权限模式引用对象
g. package name label是可选的
2 package body 应遵守的规范
a.可以有声明块,执行块,异常块;私有变量写在声明块中
b.执行块又被称为初始化块,当包被一个会话实例化时,这段代码执行。
c. 在Specification中声明的任何东西在body中都可以被引用。