Can SQL Try-Catch blocks handle thrown CLR errors? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T03:26:09Zhttp://stackoverflow.com/feeds/question/122739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122739/can-sql-try-catch-blocks-handle-thrown-clr-errors2Can SQL Try-Catch blocks handle thrown CLR errors?Noahhttp://stackoverflow.com/users/45392008-09-23T18:16:00Z2008-09-23T22:21:15Z
<p>We are using SQL 2005 and the try-catch functionality to handle all of our error handling within the DB. We are currently working on deploying a .NET CLR function to make some WCF calls in the DB. This WCF procedure is written in the CLR and then deployed to SQL. If I put a try-catch block in the CLR code, it catches the error fine. However, I can't seem to throw the error up to the try-catch block in SQL. SQL seems to ignore what I throw it and catches the error it finds. Is there no relation between the two (i.e. I can't throw from one to another?)</p>
<p>If I can throw from within the CLR to the calling procedure in SQL, is any special formatting needed? I tried a specific case of catching the error that was thrown, and then throwing a different error, but SQL ignored my thrown error and caught the original error, as if it ignored the thrown error.</p>
http://stackoverflow.com/questions/122739/can-sql-try-catch-blocks-handle-thrown-clr-errors/122950#1229501Answer by Larry.Smithmier for Can SQL Try-Catch blocks handle thrown CLR errors?Larry.Smithmierhttp://stackoverflow.com/users/49112008-09-23T18:44:48Z2008-09-23T18:44:48Z<p>Here is a blog post that covers it at a highish level:
<a href="http://blogs.msdn.com/sqlclr/archive/2006/06/29/651649.aspx" rel="nofollow" title="SQL Server 2005: CLR Integration blog post on Exception Handling">Exception handling in SQLCLR</a></p>
<blockquote>
<p>When SQL server execute a user function/procedure/trigger implemented in CLR (i.e., managed code), we will install a managed exception handler around the user code. So if the user code leaked a exception, the server will catch it and throw a TSQL exception wrapping the user exception.</p>
</blockquote>
<p>This seems to imply that it will just work.</p>