You've already forked MyFirstUDRKit
Initial Commit
This commit is contained in:
33
sql/MyFirstUDRKit.sql
Normal file
33
sql/MyFirstUDRKit.sql
Normal 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 ;^
|
||||
Reference in New Issue
Block a user