Table of Contents

PL/SQL - Package

About

A package in PLSQL is an unit of code that declares:

Constant

CREATE OR REPLACE PACKAGE body pc_myPackage
IS

    constantName constant VARCHAR2(30) := 'Hello World';

...

Query

select * from user_objects where object_type = 'PACKAGE';
select * from all_objects where object_type = 'PACKAGE';