Versions Compared

Key

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

...

Changing Default Datasource Settings 

Thai

การเปลี่ยนการตั้งค่าแหล่งข้อมูลเริ่มต้น

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

    Thai

    การเปลี่ยนการตั้งค่าแหล่งข้อมูลเริ่มต้น

         1. ค้นหาไฟล์ app_datasource-default.properties ในไดเรกทอรี wflow ของคุณ (/ home / myaccount ใน Linux และ / เอกสารและการตั้งค่า / myaccount ใน Windows)
    2.
    เปิดไฟล์โดยใช้โปรแกรมแก้ไขข้อความ
    3.
    ทำการเปลี่ยนแปลงข้อความ (อะไรก็ได้จาก ชื่อผู้ใช้, รหัสผ่าน, การเชื่อมต่อURL, ฯลฯ )
    4.
    บันทึกไฟล์และรีสตาร์ท Joget

...

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

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 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.  

Thai
ขั้นตอนที่แสดงด้านล่างใช้กับฐานข้อมูล MySQL เท่านั้น โปรดปรึกษาผู้ดูแลระบบฐานข้อมูลของคุณสำหรับขั้นตอนที่เกี่ยวข้องกับฐานข้อมูลอื่น ๆ

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

1. เพิ่มการตั้งค่า "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

2. เพิ่มขีด จำกัด ของตัวสร้างกระบวนการ (ผู้ออกแบบเวิร์กโฟลว์) เรียกใช้ 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

3. เพิ่มขีด จำกัด ของตัวสร้างแบบฟอร์ม เรียกใช้ SQL ต่อไปนี้:

Code Block
ALTER TABLE app_form CHANGE json json LONGTEXT;

4. Increase the limit of Datalist Builder; run the following SQL:

Thai

4. เพิ่มขีด จำกัด ของตัวสร้างดาต้าลิสต์; เรียกใช้ SQL ต่อไปนี้:

Code Block
ALTER TABLE app_datalist CHANGE json json LONGTEXT;

5. Increase the limit of Userview Builder; run the following SQL:

Thai

5. เพิ่มขีด จำกัด ของตัวสร้าง 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

6. เพิ่มขีด จำกัด ของคุณสมบัติปลั๊กอินเครื่องมือกระบวนการ เรียกใช้ SQL ต่อไปนี้:

Code Block
ALTER TABLE app_package_activity_plugin CHANGE pluginProperties pluginProperties LONGTEXT;