Getting Stored Procedure Information from .Net

Posted by Ben on Stack Overflow See other posts from Stack Overflow or by Ben
Published on 2010-04-07T12:01:33Z Indexed on 2010/04/07 12:03 UTC
Read the original article Hit count: 218

Filed under:
|
|
|

Hi,
I am trying to get some data relevant to a stored procedure (or funtion) back from a database using .Net. The first thing I need to be able to do, is get the stored proc from the database and turn it into string format. The information I need is: The return set of columns, tables used within the SP, Stored Procedures called from the SP. The only way of doing this at the moment that i can think of, is though parsing the text and looking for keyword matches. Is there a better way of doing this?

Any ideas?

Thanks.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#