34 lines
526 B
SQL
34 lines
526 B
SQL
set term ^;
|
|
|
|
create or alter package my_first_udr_kit
|
|
as
|
|
begin
|
|
|
|
-- Add Procedure and Function Headers here
|
|
-- eg:
|
|
/*
|
|
procedure split_boolean (
|
|
in_txt blob sub_type text,
|
|
in_separator varchar(31))
|
|
returns (
|
|
out_boolean boolean);
|
|
*/
|
|
|
|
end ^
|
|
|
|
|
|
recreate package body my_first_udr_kit
|
|
as
|
|
begin
|
|
procedure split_boolean (
|
|
in_txt blob sub_type text,
|
|
in_separator varchar(31))
|
|
returns (
|
|
out_boolean boolean)
|
|
external name 'my_first_udr_kit!split' engine udr;
|
|
|
|
end ^
|
|
|
|
|
|
set term ;^
|