Get stored procedure parameters by either C# or SQL? -


I was hoping to find an easy way to get the parameter list of stored procedure parameter parameters if there are 3 parameters in the process , Then I want a list like this:

param1
param2
param3

It would be best to do this in the C # code Capable, but the SQL will also be sufficient. Ideas?

Select parameters from info_schema Parameter where specific_name = 'your_procedure_name'

Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -