im programming in c++ using ado, the documnet on tsql says the OUTPUT clause can return the result to the calling program, is there anyway i can retrieve it with ado in c++ ? if it is possible how to do that ?
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.
Setup an extra parameter in your ADO object and have the parameter direction as output. Then have your original update statement define an extra variable (which is the output variable) and assign your result to that output variable.