Creating Packages   «Prev  Next»

Lesson 4 Making the package specification
ObjectiveBuild the outer shell of a package

Making the Package Specification in Oracle

Creating a package begins by creating the package specification. The following MouseOver describes the syntax of the CREATE PACKAGE command and shows an example.

Package Syntax.gif
  1. The OR REPLACE phrase is optional. Include it when you want to replace the current version of the package when you run the command.
  2. You must specify either IS or AS, whichever you prefer.
  3. Each public sub-program is defined here with the syntax {PROCEDURE I FUNCTION} subprogram_name [(parameter_specs)]. Separate them with semicolons.
CREATE [OR REPLACE] PACKAGE packagename (IS | AS)
(PROCEDURE | FUNCTION) subprogram_name1 [(parameter_specs)];
(PROCEDURE | FUNCTION) subprogram_name2 [(parameter_specs)];

PL/SQL package example
CREATE OR REPLACE PACKAGE GET_MONTHEND_DATA IS
PROCEDURE CALC_PROFIT 
 (I_YEAR IN NUMBER, I_MONTH IN NUMBER, 0_PROFIT
   OUT NUMBER);
FUNCTION CALC_DIVIDENDS
  (I_CUTOFF_DATE IN DATE) RETURN NUMBER;
END GET_MONTHEND_DATA;

Package Specification Syntax

Separating the Specification and Body

The specification of a package declares the public
  1. types,
  2. variables,
  3. constants, and
  4. subprograms
that are visible outside the immediate scope of the package. The body of a package defines the objects declared in the specification, as well as private objects that are not visible to applications outside the package. Oracle stores the specification and body of a package separately in the database. Other schema objects that call or reference public program objects depend only on the package specification, not on the package body. Using this distinction, you can change the definition of a program object in the package body without causing Oracle to invalidate other schema objects that call or reference the program object. Oracle invalidates dependent schema objects only if you change the declaration of the program object in the package specification.

Oracle PL/SQL Programming

Creating a New Package: Example 6-4

The following example shows a package specification for a package named EMPLOYEE_MANAGEMENT. The package contains one stored function and two stored procedures.
CREATE PACKAGE employee_management AS
FUNCTION hire_emp (name VARCHAR2, job VARCHAR2,
mgr NUMBER, hiredate DATE, sal NUMBER, comm NUMBER,
deptno NUMBER) RETURN NUMBER;
PROCEDURE fire_emp (emp_id NUMBER);
PROCEDURE sal_raise (emp_id NUMBER, sal_incr NUMBER);
END employee_management;
The body for this package defines the function and the procedures:
CREATE PACKAGE BODY employee_management AS
FUNCTION hire_emp (name VARCHAR2, job VARCHAR2,
mgr NUMBER, hiredate DATE, sal NUMBER, comm NUMBER,
deptno NUMBER) RETURN NUMBER IS

The function accepts all arguments for the fields in the employee table except for the employee number. A value for this field is supplied by a sequence. The function returns the sequence number generated by the call to this function.
new_empno NUMBER(10);
BEGIN
SELECT emp_sequence.NEXTVAL INTO new_empno FROM dual;
INSERT INTO emp VALUES (new_empno, name, job, mgr,
hiredate, sal, comm, deptno);
RETURN (new_empno);
END hire_emp;
PROCEDURE fire_emp(emp_id IN NUMBER) AS

The procedure deletes the employee with an employee number that corresponds to the argument emp_id. If no employee is found, then an exception is raised.
BEGIN
DELETE FROM emp WHERE empno = emp_id;
IF SQL%NOTFOUND THEN
raise_application_error(-20011, 'Invalid Employee
Number: ' || TO_CHAR(emp_id));
END IF;
END fire_emp;
PROCEDURE sal_raise (emp_id IN NUMBER, sal_incr IN NUMBER) AS

The procedure accepts two arguments. Emp_id is a number that corresponds to an employee number. Sal_incr is the amount by which to increase the employee's salary.
BEGIN
-- If employee exists, then update salary with increase.
UPDATE emp
SET sal = sal + sal_incr
WHERE empno = emp_id;
IF SQL%NOTFOUND THEN
raise_application_error(-20011, 'Invalid Employee
Number: ' || TO_CHAR(emp_id));
END IF;
END sal_raise;
END employee_management;

Once you create the package specification, you do not need to recompile it, even if the package body is recompiled. This promotes system stability because there is less need to recompile applications, such as Oracle Forms, that depend on the package.
The next lesson shows how to complete the package by defining the package body.