|
-
Any func/proc can go into a package.
Func/proc are 'invisible' when they are private func/proc.
example:
create or replace package junk is
PROCEDURE do_nothing;
end junk;
create or replace package body junk is
FUNCTION my_private_func RETURN BOOLEAN IS
BEGIN
RETURN TRUE;
END;
PROCEDURE do_nothing IS
BEGIN
NULL;
END;
end junk;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|