I want to update status of selected items "Created" to "Assigned" using JDBC

Confluence User - 11 May, 2020

Now, I want to update status when I will click on assign button then selected checkbox's status value will be update to Assigned.



Thank you.

forms;datalists

1


12 May, 2020
confluenceUser
1
confluenceUser

You'll need to use the SQL Update statement. Ensure the columns has a prefix "c_" and the table name has the prefix "app_fd_"

example: You have a form with the table named "projects", and in it you have a field called "status". Hence your SQL update statement should look something like:

UPDATE app_fd_projects SET c_status='Assigned' WHERE <whatever conditions set>;

more info at JDBC Form Binder

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print