Files
2014-01-17 07:03:16 -07:00

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;