Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Thai |
---|
การเปลี่ยนการตั้งค่าแหล่งข้อมูลเริ่มต้น |
Save file and restart Joget.
Thai |
---|
การเปลี่ยนการตั้งค่าแหล่งข้อมูลเริ่มต้น1. ค้นหาไฟล์ app_datasource-default.properties ในไดเรกทอรี wflow ของคุณ (/ home / myaccount ใน Linux และ / เอกสารและการตั้งค่า / myaccount ใน Windows) |
...
English |
---|
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: |
Thai |
---|
ทำงานบนฐานข้อมูลอื่น ๆJoget ยังช่วยให้คุณสามารถรันบนฐานข้อมูลนอกเหนือจาก MySQL ที่มาพร้อมกับบันเดิล สำหรับข้อมูลเกี่ยวกับวิธีการเชื่อมต่อเหล่านั้นให้อ้างอิงกับแหล่งข้อมูลด้านล่าง: |
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 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.
Thai |
---|
เพิ่มข้อ จำกัด ของรายการ / องค์ประกอบในตัวสร้างแบบฟอร์ม / ดาต้าลิสต์ / Userview และตัวสร้างกระบวนการใน Joget Workflow ทุกรูปแบบที่คุณออกแบบดาต้าลิสต์ตัวอย่างการใช้งานและโฟลว์กระบวนการจะถูกเก็บไว้ในฐานข้อมูล จำนวนรายการ / องค์ประกอบที่คุณสามารถเพิ่มในตัวสร้างของคุณถูก จำกัดโดยคอลัมน์ฐานข้อมูลที่เก็บคำจำกัดความของคุณ เพื่อเพิ่มขีดจำกัดคุณสามารถทำตามขั้นตอนต่อไปนี้สำหรับตัวสร้างแต่ละตัว |
Note | ||
---|---|---|
The steps outlined below are applicable to MySQL database only. Please consult your database administrator for steps pertaining to other databases.
|
1. Increase the "max_allowed_packet" setting in my.ini of MySQL for huge data. At the end of the my.ini file content, add this line:
Thai |
---|
เพิ่มการตั้งค่า "max_allowed_packet" ใน my.ini ของ MySQL สำหรับข้อมูลขนาดใหญ่ ในตอนท้ายของเนื้อหาไฟล์ my.ini ให้เพิ่มบรรทัดนี้: |
Code Block |
---|
max_allowed_packet=32M |
2. Increase the limit of Process Builder (Workflow Designer); run the following SQL:
Thai |
---|
เพิ่มขีด จำกัด ของตัวสร้างกระบวนการ (ผู้ออกแบบเวิร์กโฟลว์) เรียกใช้ SQL ต่อไปนี้: |
Code Block |
---|
ALTER TABLE SHKXPDLData CHANGE XPDLContent XPDLContent LONGBLOB; ALTER TABLE SHKXPDLData CHANGE XPDLClassContent XPDLClassContent LONGBLOB; |
3. Increase the limit of Form Builder; run the following SQL:
Thai |
---|
เพิ่มขีด จำกัด ของตัวสร้างแบบฟอร์ม เรียกใช้ SQL ต่อไปนี้: |
Code Block |
---|
ALTER TABLE app_form CHANGE json json LONGTEXT; |
4. Increase the limit of Datalist Builder; run the following SQL:
Thai |
---|
เพิ่มขีด จำกัด ของตัวสร้างดาต้าลิสต์; เรียกใช้ SQL ต่อไปนี้: |
Code Block |
---|
ALTER TABLE app_datalist CHANGE json json LONGTEXT; |
5. Increase the limit of Userview Builder; run the following SQL:
Thai |
---|
เพิ่มขีด จำกัด ของตัวสร้าง Userview เรียกใช้ SQL ต่อไปนี้: |
Code Block |
---|
ALTER TABLE app_userview CHANGE json json LONGTEXT; |
6. Increase the limit of Process Tool Plugin properties; run the following SQL:
Thai |
---|
เพิ่มขีด จำกัด ของคุณสมบัติปลั๊กอินเครื่องมือกระบวนการ เรียกใช้ SQL ต่อไปนี้: |
Code Block |
---|
ALTER TABLE app_package_activity_plugin CHANGE pluginProperties pluginProperties LONGTEXT; |
Joget DX supports MySQL 8 database as Joget comes preinstalled with MariaDB drivers v2.5.0 to support MySQL 8 default caching_sha2_password authentication.