Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
The grid is using a pair of identical load and store data store (which makes sense most of the time so that data is stored and loaded from the same source). We can opt to use JDBC Database SQL Query data store as the load data store so that we can gain full control on how dataset is returned and constructed.
...
Thai |
---|
กริดใช้คู่โหลดที่เหมือนกันและที่เก็บสารยึดเกาะ (ซึ่งใช้เวลาส่วนใหญ่ในการเก็บและโหลดข้อมูลจากแหล่งเดียวกัน) เราสามารถเลือกใช้ JDBC Database SQL Query data store เป็น load data store เพื่อให้เราสามารถควบคุมได้อย่างเต็มที่ว่าชุดข้อมูลจะถูกส่งคืนและสร้างอย่างไร ด้วยความสามารถในการกำหนดแบบสอบถาม SQL ของเราเองเราสามารถสร้างแบบสอบถามที่จะกลับแถวสุดท้ายเป็นแถวค่ารวม |
...
However, it does not actually play out well with the JDBC Database SQL Query data store as it is only expecting one parameter in the query. Our union query has 2 parameters.
...
Thai |
---|
อย่างไรก็ตามมันไม่ได้เล่นได้ดีกับ JDBC Database SQL Query data store เนื่องจากมันคาดหวังเพียงหนึ่งพารามิเตอร์ในแบบสอบถาม แบบสอบถามแบบร่วมของเรามี 2 พารามิเตอร์ เพื่อเอาชนะสิ่งนี้เราสามารถสร้างโพรซีเดอร์ที่เก็บไว้ในฐานข้อมูลแทน |
...
With the stored procedure to return the appropriate dataset that we need, we will just need to call it from the JDBC Database SQL Query data store.
Thai |
---|
ด้วยโพรซีเดอร์ที่เก็บไว้เพื่อส่งคืนชุดข้อมูลที่เหมาะสมที่เราต้องการเราจะต้องเรียกมันจาก JDBC Database SQL Query data store |
This is the outcome.
...