C# extended stored procedures?

  • Thread starter Thread starter JJ
  • Start date Start date
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. . .
 
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
 
Back
Top