mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
327 B
Plaintext
12 lines
327 B
Plaintext
create or replace package datalookup
|
|
as
|
|
type refcursor is ref cursor;
|
|
|
|
function check_character_name(p_name varchar2) return number;
|
|
function get_structures_for_purge(p_station_id number) return refcursor;
|
|
function get_vendors_for_purge(p_station_id number) return refcursor;
|
|
|
|
end;
|
|
/
|
|
grant execute on datalookup to public;
|