Can SQL Try-Catch blocks handle thrown CLR errors? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T03:26:09Z http://stackoverflow.com/feeds/question/122739 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122739/can-sql-try-catch-blocks-handle-thrown-clr-errors 2 Can SQL Try-Catch blocks handle thrown CLR errors? Noah http://stackoverflow.com/users/4539 2008-09-23T18:16:00Z 2008-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#122950 1 Answer by Larry.Smithmier for Can SQL Try-Catch blocks handle thrown CLR errors? Larry.Smithmier http://stackoverflow.com/users/4911 2008-09-23T18:44:48Z 2008-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>