mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
create or replace package biography
|
|
as
|
|
type refcursor is ref cursor;
|
|
subtype objectid is number;
|
|
|
|
procedure set_biography (p_owner objectid, p_biography varchar2);
|
|
function get_biography (p_owner objectid) return refcursor;
|
|
end;
|
|
/
|
|
grant execute on biography to public;
|