Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Any Joget JDBC database INSERT needs to include the "id" which is a primary key (Sample applies to SELECT). The example below used the "{uuid}" function to tell the DB to assign a random value:
INSERT app_fd_table_child (id, c_name, c_emailAddress, c_contactTel) VALUES ({uuid}, {name}, {emailAddress}, {contactTel})
INSERT INTO Table (c_field) VALUES ("#form.Table1.field#");
I'm using this query to insert a value using data base update tool, but I couldn't get the expected result.
Help me to resolve this...