I have a scenario here, I have a parent table related with a child table in SQLite db. When I save the parent table details in first screen by a SQL connector call (to run a insert command), I want to get the primary key as well. This is needed because in the subsequent step after parent table detail submission, on the next screen , I want the user to enter the details for the related child table. But this would need me to get the primary key of the record inserted in the previous step to map the child table details to the correct parent table record.
We have different methods in Java Jdbc api to return the inserted record’s primary key, but here in simplifier we have only connector calls. Please let me know how can we achieve this in simplifier, as this is a generic parent-child table use case.