I am trying to write Pro * C / C / C ++ code to handle such a request:
SELECT col1, col2, col3, col4 FROM table WHERE param IN(<set of values>);
I can have a C structure to get the result and pass the individual parameters, but I can’t find a way to do this without explicitly specifying each value in the list.
Is there a way to pass a set as an array / vector / list?
source share