Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Use JDBC Datalist Action and SQL to update the status column in your database.
like this?
You'll need a where clause. Check the link Matthew King gave, there are some query examples.
Did I am doing wrong? Because the query does not works.
UPDATE
app_fd_hr_sd_details_print
SET
c_status =='Completed'
WHERE
c_reference_no = '#requestParam.reference_no#'
I want to set everytime user clicked the button completed based on that reference_no, the c_status will be updated to Completed.
The SET syntax is wrong, should be ( read here for more information):
UPDATE app_fd_hr_sd_details_print SET c_status = 'Completed' WHERE c_reference_no = '#requestParam.reference_no#'
You can also try ".... WHERE c_reference_no = ? ".
I have tried the query but still it does not work. the c_status does not updated from NULL to Completed
Hi experts,
I want to change status letter from incomplete to completed when I clicked the completed button.
How can I do that?
do I need to modify my workflow?