vote up 3 vote down star
2

Is it good design to throw exceptions from SQL CLR stored procedures? Since we are in the context of SQL Server, do any special considerations need to be made?

Is this bad design?

[Microsoft.SqlServer.Server.SqlProcedure]
public static void MyStoredProcedure(string foo)
{
    if (string.IsNullOrEmpty(foo))
    {
        throw new ArgumentNullException("foo");
    }
}

In other words, should exceptions be bubbled up to the caller?

flag

1 Answer

vote up 3 vote down check

You might try reading this blog: SQL Programmability & API Development Team Blog.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.