Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColorgreen
borderWidth1
titleBGColor#ddffcc
borderStylesolid
titleDefinition

JDBC Form Binder allows you to customize how form data is stored and/or loaded, either from Joget or custom database via user-defined SQL statements.Note that, as a load binder, you only need to configure the datasource and SELECT query ; as a store binder, you will also need to write SQL for INSERT, UPDATE, and DELETE. ช่วยให้คุณสามารถกำหนดวิธีการจัดเก็บแบบฟอร์มข้อมูลในฐานข้อมูล

โปรดทราบว่าในฐานะที่เป็นเครื่องผูกโหลดคุณจะต้องกำหนดค่าแหล่งข้อมูลและแบบสอบถาม คุณจะต้องเขียน SQL สำหรับ UPDATE และ DELETE ด้วย
Panel
borderColorpurple
borderWidth1
titleBGColor#ddccff
borderStylesolid
titleNew Feature
This is a new feature in Joget Workflow v6.
นี่เป็นคุณสมบัติใหม่ใน Joget Workflow เวอร์ชั่น 6

Figure ภาพที่ 1: JDBC Form Load Binder Propertiesคุณสมบัติตัวยึดฟอร์ม

NameDescription
Datasource
  • Custom Datasource
  • Default Datasource
By selecting
โดย Default
Datasource, the database your Joget is currently using will be selected.
 Datasource เป็นฐานข้อมูลที่ Joget ของคุณกำลังใช้งานอยู่
Custom JDBC Driver

Custom JDBC Driver. This field is required when Custom Datasource is selected in Datasource above.ไดร์เวอร์ JDBC แบบกำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน

Custom JDBC URL 
Custom JDBC URL. This field is required when Custom Datasource is selected in Datasource above.
URL JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน
Custom JDBC Username 
Custom JDBC Username. This field is required when Custom Datasource is selected in Datasource above.
ชื่อผู้ใช้ JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน
Custom JDBC Password

Custom JDBC Password. This field is required when Custom Datasource is selected in Datasource above.รหัสผ่าน JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน

Info
titleTest the connection parameters

Click on the คลิกที่ปุ่ม "ทดสอบการเชื่อมต่อ(Test Connection" button at the bottom of the page to quickly test out your configurations.)" ที่ด้านล่างของหน้าเพื่อทดสอบการกำหนดค่าของคุณ

SQL SELECT Query
Code Block
languagesql
linenumberstrue
SELECT * FROM app_fd_table WHERE  id = '#requestParam.id#'


Figure ภาพที่ 2: คุณสมบัติของตัวยึดแบบฟอร์มสำหรับเก็บฟอร์ม JDBC Form Store Binder Properties

NameDescription
Datasource
  • Custom Datasource
  • Default Datasource
By selecting
โดย Default
Datasource, the database your Joget is currently using will be selected.
 Datasource เป็นฐานข้อมูลที่ Joget ของคุณกำลังใช้งานอยู่
Custom JDBC Driver

Custom JDBC Driver. This field is required when Custom Datasource is selected in Datasource above.ไดร์เวอร์ JDBC แบบกำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน

Custom JDBC URL 
Custom JDBC URL. This field is required when Custom Datasource is selected in Datasource above.
URL JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน
Custom JDBC Username 
Custom JDBC Username. This field is required when Custom Datasource is selected in Datasource above.
ชื่อผู้ใช้ JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน
Custom JDBC Password

Custom JDBC Password. This field is required when Custom Datasource is selected in Datasource above.รหัสผ่าน JDBC ที่กำหนดเอง ฟิลด์นี้จำเป็นเมื่อเลือก Custom Datasource ใน Datasource ด้านบน

Info
titleTest the connection parameters

Click on the คลิกที่ปุ่ม "ทดสอบการเชื่อมต่อ(Test Connection" button at the bottom of the page to quickly test out your configurations.)" ที่ด้านล่างของหน้าเพื่อทดสอบการกำหนดค่าของคุณ

SQL SELECT Query
Code Block
languagesql
linenumberstrue
SELECT * FROM app_fd_table WHERE  id = '#requestParam.id#'

Note: If you use JDBC in a form grid for load/save, be advised the SQL syntax is different from the above. Kindly download and view the sample app for JDBC in a form grid at the bottom of this page.หากคุณใช้ JDBC ในตารางแบบฟอร์มสำหรับการโหลดหรือบันทึกขอแนะนำให้ใช้ไวยากรณ์ SQL ที่แตกต่างจากด้านบน กรุณาดาวน์โหลดและดูแอพตัวอย่างสำหรับ JDBC ในตารางแบบฟอร์มที่ด้านล่างของหน้านี้

SQL INSERT Query

Use syntax like curly brackets ใช้ไวยากรณ์เช่นวงเล็บปีกกา {field_id} in query to inject submitted form data.ในแบบสอบถามเพื่อฉีดข้อมูลแบบฟอร์มที่ส่ง

Code Block
languagesql
linenumberstrue
INSERT app_fd_table 
       (id, 
        c_name, 
        c_emailaddress, 
        c_contacttel) 
VALUES ({id}, 
        {name}, 
        {emailAddress}, 
        {contactTel}) 

Note: Be advised JDBC load/save binders cannot be used if your form or form grid has file or image attachment field elements. You will need to use the default Multirow Form Binder in this circumstance.ขอแนะนำให้ใช้ JDBC ตัวโหลดหรือบันทึกตัวยึดหากไม่สามารถใช้รูปแบบหรือกริดแบบฟอร์มของคุณมีองค์ประกอบของฟิลด์ไฟล์หรือรูปภาพ คุณจะต้องใช้ Multirow Form Binder ที่เป็นค่าเริ่มต้นในกรณีนี้

SQL UPDATE QueryUse syntax like curly brackets
ใช้ไวยากรณ์เช่นวงเล็บปีกกา {field_id}
in query to inject submitted form data.
 ในแบบสอบถามเพื่อฉีดข้อมูลแบบฟอร์มที่ส่ง
Code Block
languagesql
linenumberstrue
UPDATE app_fd_table 
SET    id = {id}, 
       c_name = {name}, 
       c_emailaddress = {emailAddress}, 
       c_contacttel = {contactTel} 
WHERE  id = {id} 
SQL DELETE QueryUsed in deleting form data records in Datalist/Grid element. Use syntax like curly brackets {id} in query to inject form data primary key
ใช้ในการลบบันทึกข้อมูลแบบฟอร์มในองค์ประกอบ Datalist หรือตาราง ใช้ไวยากรณ์เช่นวงเล็บปีกกา {id} ในแบบสอบถามเพื่อฉีดคีย์ข้อมูลหลักในแบบฟอร์ม
Code Block
languagesql
linenumberstrue
DELETE FROM app_fd_table 
WHERE  id = {id} 

 

Below are sample apps to demonstrate the use of JDBC Load and Save Binders:

...

ด้านล่างเป็นแอพตัวอย่างที่แสดงให้เห็นถึงการใช้ JDBC Load และ Save Binders: 
ตัวอย่างแอป JDBC ในแบบฟอร์ม  APP_jdbc_example.jwa.

...

ตัวอย่างแอป JDBC ในฟอร์มตาราง APP_Example_JDBC_Binder_on_Form_Grid.jwa