I am working on a Form that will gather information from a teacher about student academics. It will contain a table that teacher will be able to use to enter student information. When I pass that information into a Workflow, how would I go about parsing that data row by row to insert into a SQL database table?
Question
Question
Answer
Hi Blake,
Use a For Each Row activity in workflow, which allows you to select the Form table from which to retrieve the rows.
Regards,
Kyle
Replies
In short, a For Each Value activity in Workflow can be used to parse the columns from a field within a Table in forms. You can then use the database activities in Workflow (Insert Data, Update Data, etc.) to place that information into a SQL table.
Let me know if you have more specific questions about this process.
I need to know which values came from which row so when I insert them into the SQL database table it keeps them together. Will the For Each Value activity do that?
If you want to parse the whole table all together I would go with For Each Row as Kyle mentioned above. It'll give you all the columns from the current row as tokens.