Is there some way to pass a table-valued parameter to a stored procedure in SQL Server via classic ADO?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I thought they were new in 2008?
Anyway, I think the answer is going to be no, I doubt there’s a DataTypeEnum value that you’ll be able to bend to your needs.
So if I may suggest an alternative, I guess what you want to do is pass some sort of structured data into the stored procedure. I have done this before in ADO using XML:
I know it’s not what you wanted, but it’s a method that works