Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Table of Contents |
---|
Note: Connecting to an existing database will not affect that database data. Joget will just create the db connection values and save it into the .properties file.
...
Joget also allows you to run on databases apart from the default MySQL that comes with the bundle. For information on how to make those connections, refer to the resources below:
Children Display |
---|
...
In Joget Workflow, all your designed forms, datalists, userviews and also the process flows are stored in the database. The number of items/elements you can add in to your builder /designer is actually limited by the database column that store the definition of your design. To increase the limit, you can do the following steps for each builder/designer.
Note |
---|
The steps outlined below are applicable to MySQL database only. Please consult your database administrator for steps pertaining to other databases. |
...
Code Block |
---|
max_allowed_packet=32M |
2. Increase the limit of Process Builder (Workflow Designer); run the following SQL:
Code Block |
---|
ALTER TABLE SHKXPDLData CHANGE XPDLContent XPDLContent LONGBLOB; ALTER TABLE SHKXPDLData CHANGE XPDLClassContent XPDLClassContent LONGBLOB; |
...