-
Notifications
You must be signed in to change notification settings - Fork 3
hdbstructure
Ayhan Rashidov edited this page Sep 5, 2022
·
1 revision
This object type represents a database table type.
The information on how to develop the design-time data-persistence structure model for a Kronos application.
table.schemaName = "DBADMIN";
table.public = false;
table.columns = [
{name = "SCENARIO_ID"; sqlType=VARCHAR; nullable=false; length=32; },
{name = "PERIOD_ID"; sqlType=DECIMAL; nullable=false; precision = 20; scale = 3; },
{name = "MATERIAL_ID"; sqlType=VARCHAR; length=32; },
{name = "DEPTH"; sqlType=INTEGER; nullable=true; comment=""; }
];
table.primaryKey.pkcolumns = ["SCENARIO_ID"];https://github.com/codbex/codbex-kronos/tree/main/samples/hdb-structure-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/hdbstructure https://github.com/codbex/codbex-kronos/tree/main/modules/engines/engine-hdb/src/test/java/com/codbex/kronos/hdb/ds/processors/tabletype