mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
10 lines
218 B
Plaintext
10 lines
218 B
Plaintext
create or replace package objvar_names
|
|
as
|
|
type cursortype is ref cursor;
|
|
|
|
procedure add_name (p_id number, p_name varchar2);
|
|
function get_name_list return cursortype;
|
|
end;
|
|
/
|
|
grant execute on objvar_names to public;
|