Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Changing Default Datasource Settings

  1. Stop tomcat server.
  2. Locate your app_datasource-default.properties file in your wflow directory (/home/myaccount in Linux and /Documents and Settings/myaccount in Windows).
  3. Open file using any text editor.
  4. Make changes where necessary (anything from username, passwords. connection URLs, etc).
  5. Save file and restart Joget.


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.

Working with Datasource Profiles

...

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

Increase the Limit of Items/Elements in Form/Datalist/Userview Builder and Process

...

Builder

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;

...