Initial Commit

This commit is contained in:
2023-01-19 16:52:45 +01:00
parent 68b3cf286d
commit a340f4e1da
2 changed files with 205 additions and 0 deletions

33
sql/MyFirstUDRKit.sql Normal file
View File

@ -0,0 +1,33 @@
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 ;^