Start work on BillDate

This commit is contained in:
Paul Reeves 2023-01-20 19:37:07 +01:00
parent 8c366b60ac
commit 25db2003ae
1 changed files with 21 additions and 0 deletions

View File

@ -107,6 +107,27 @@ FB_UDR_END_FUNCTION
/*** DDL
create function BillDate (
d integer,
date
) returns date
external name 'my_first_udr_kit!MFK_BillDate'
engine udr;
***/
FB_UDR_BEGIN_FUNCTION(MFK_BillDate)
FB_UDR_MESSAGE(InMessage,
(FB_INTEGER, d)
(FB_INTEGER, date)
);
FB_UDR_MESSAGE(OutMessage,
(FB_DATE, result)
);
FB_UDR_END_FUNCTION