Is there any way for an application to determine the parameters and paramter types of a stored procedure at run time?
Is there any way for an application to determine the parameters and paramter types
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.
ADO.Net has this functionality. You’ll want to use
SqlCommandBuilder.DeriveParameters(mySqlCommand)This will populate your
SqlCommandobject, “mySqlCommand”, with the name and type of the parameters. However, it does require an extra call to the database.There are a few walkthroughs on the web if you google around for them. 4Guys has one here.