Replies: 1 comment 8 replies
-
Cursors are the real solution here, and one I’d like to implement in the future. For now, #424 shows one method of looping through data and performing an action. It’s not as efficient as a cursor would be but should be good enough for small data sets. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a CustomAPI call which has the following inputs...
The idea is that the CustomAPI can be invoked on any record.
... and no outputs.
The call can be executed using the following syntax without issue.
exec <customapiname> ....
The question is whether it's possible to run the individually customapi for each record returned from a query?
I have tried Cross Apply to no luck and Sql4Cds doesn't do Cursors.
Beta Was this translation helpful? Give feedback.
All reactions