-
Notifications
You must be signed in to change notification settings - Fork 3
hdbtablefunction
Ayhan Rashidov edited this page Sep 5, 2022
·
3 revisions
This object type represents a database function.
The information on how to develop the design-time data-persistence table function model for a Kronos application.
FUNCTION "MYSCHEMA"."hdb_view::OrderTableFunction" ()
RETURNS TABLE (
"Id" NVARCHAR(32),
"CustomerName" NVARCHAR(500)
)
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER AS
BEGIN
RETURN SELECT "Id", "CustomerName" FROM "hdb_view::Item";
END;
https://github.com/codbex/codbex-kronos/tree/main/samples/hdb-tablefunction-simple
- Data Structure Parser
- Processor
https://github.com/codbex/codbex-kronos/tree/main/modules/engines/engine-hdb/src/test/java/com/codbex/kronos/hdb/ds/parser/hdbtablefunction https://github.com/codbex/codbex-kronos/tree/main/modules/engines/engine-hdb/src/test/java/com/codbex/kronos/hdb/ds/processors/function