C# extended stored procedures?

J

JJ

Can I write an extended stored procedure using C#? I see
most are written C/C++. I have a app I am designing and I
need a UDF to raise custom errors. The only way I can see
doing this is by having the function call an xp that will
raise the error for me since the UDF can raise it
directly. . .
 
J

Jonathan Schafer

Extended stored procedures are just COM dll's, and you can created
dll's in C# that expose a COM interface so it shouldn't be a problem.

Jonathan Schafer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top