July 13, 2006 at 9:10 am
Can someone tell me how to pass a array of strings to a TSQL SP?
Cheers
July 13, 2006 at 10:57 am
You cannot pass an array into a procedure.
Here's an article you can read:
You can also try to pass in XML
July 14, 2006 at 7:26 am
I always use #temp_tables to hold arrays for my stored procedures. There's probably a better way, but it does the trick.
July 14, 2006 at 7:42 am
Great article Ray
Thanks
July 14, 2006 at 1:23 pm
Instead of an array of strings, or temp tables, pass in XML variables instead.
July 17, 2006 at 2:39 am
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply