in reply to Send array to SQL procedure as a cursor

You create a temporary table and insert the items from your list into that and then create a cursor for a query against that temp table.

- tye        

  • Comment on Re: Send array to SQL procedure as a cursor (temp table)

Replies are listed 'Best First'.
Re^2: Send array to SQL procedure as a cursor (temp table)
by Anonymous Monk on Jul 22, 2015 at 15:02 UTC

    Thank you for the information, i will try this alternative.